Skip to content

Commit 87b7fa9

Browse files
authored
Bump the version (#554)
1 parent 624065c commit 87b7fa9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ option(MLX_BUILD_METAL "Build metal backend" ON)
1818
option(BUILD_SHARED_LIBS "Build mlx as a shared library" OFF)
1919

2020
if(NOT MLX_VERSION)
21-
set(MLX_VERSION 0.0.10)
21+
set(MLX_VERSION 0.0.11)
2222
endif()
2323

2424
# --------------------- Processor tests -------------------------

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
project = "MLX"
1313
copyright = "2023, MLX Contributors"
1414
author = "MLX Contributors"
15-
version = ".".join(mx.__version__.split()[:-1])
15+
version = ".".join(mx.__version__.split(".")[:3])
1616
release = version
1717

1818
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def run(self) -> None:
152152

153153
setup(
154154
name="mlx",
155-
version=get_version("0.0.10"),
155+
version=get_version("0.0.11"),
156156
author="MLX Contributors",
157157
author_email="[email protected]",
158158
description="A framework for machine learning on Apple silicon.",

0 commit comments

Comments
 (0)