diff --git a/CMakeLists.txt b/CMakeLists.txt index fc3d4b5247..7223b65948 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.10) + set(MLX_VERSION 0.0.11) endif() # --------------------- Processor tests ------------------------- diff --git a/docs/src/conf.py b/docs/src/conf.py index 7e86ef5329..bec2c976c0 100644 --- a/docs/src/conf.py +++ b/docs/src/conf.py @@ -12,7 +12,7 @@ project = "MLX" copyright = "2023, MLX Contributors" author = "MLX Contributors" -version = ".".join(mx.__version__.split()[:-1]) +version = ".".join(mx.__version__.split(".")[:3]) release = version # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 8e1fc93ae3..5def2e0153 100644 --- a/setup.py +++ b/setup.py @@ -152,7 +152,7 @@ def run(self) -> None: setup( name="mlx", - version=get_version("0.0.10"), + version=get_version("0.0.11"), author="MLX Contributors", author_email="mlx@group.apple.com", description="A framework for machine learning on Apple silicon.",