diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ea908981..70293ebba 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.3) + set(MLX_VERSION 0.0.6) endif() # --------------------- Processor tests ------------------------- @@ -221,4 +221,4 @@ install( install( DIRECTORY ${CMAKE_MODULE_PATH}/ DESTINATION ${MLX_CMAKE_INSTALL_MODULE_DIR} -) \ No newline at end of file +) diff --git a/docs/src/conf.py b/docs/src/conf.py index a5fbf5b16..d38d3424f 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.5" -release = "0.0.5" +version = "0.0.6" +release = "0.0.6" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 4711a87c9..f5d04e959 100644 --- a/setup.py +++ b/setup.py @@ -165,7 +165,7 @@ if __name__ == "__main__": setup( name="mlx", - version=get_version("0.0.5"), + version=get_version("0.0.6"), author="MLX Contributors", author_email="mlx@group.apple.com", description="A framework for machine learning on Apple silicon.",