Skip to content

Commit

Permalink
Bump the version (#554)
Browse files Browse the repository at this point in the history
angeloskath authored Jan 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 624065c commit 87b7fa9
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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 -------------------------
2 changes: 1 addition & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
@@ -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 ---------------------------------------------------
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
description="A framework for machine learning on Apple silicon.",

0 comments on commit 87b7fa9

Please sign in to comment.