From 87b7fa9ba2fdd2f9887671cf56cfa0e958c04cf2 Mon Sep 17 00:00:00 2001 From: Angelos Katharopoulos Date: Thu, 25 Jan 2024 11:01:05 -0800 Subject: [PATCH] Bump the version (#554) --- CMakeLists.txt | 2 +- docs/src/conf.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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.",