From 526466dd095238a968daadfb6f7c400fb4a1bc4c Mon Sep 17 00:00:00 2001 From: Awni Hannun Date: Wed, 3 Jan 2024 14:48:24 -0800 Subject: [PATCH] version bump (#355) * version bump * one more --- CMakeLists.txt | 2 +- docs/src/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f79402bcc..5e8afa3c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ option(MLX_BUILD_METAL "Build metal backend" ON) option(BUILD_SHARED_LIBS "Build mlx as a shared library" OFF) if(NOT MLX_VERSION) - set(MLX_VERSION 0.0.6) + set(MLX_VERSION 0.0.7) endif() # --------------------- Processor tests ------------------------- diff --git a/docs/src/conf.py b/docs/src/conf.py index d38d3424f..451de7033 100644 --- a/docs/src/conf.py +++ b/docs/src/conf.py @@ -10,8 +10,8 @@ import subprocess project = "MLX" copyright = "2023, MLX Contributors" author = "MLX Contributors" -version = "0.0.6" -release = "0.0.6" +version = "0.0.7" +release = "0.0.7" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 317f45f97..d6876c860 100644 --- a/setup.py +++ b/setup.py @@ -164,7 +164,7 @@ if __name__ == "__main__": setup( name="mlx", - version=get_version("0.0.6"), + version=get_version("0.0.7"), author="MLX Contributors", author_email="mlx@group.apple.com", description="A framework for machine learning on Apple silicon.",