diff --git a/CHANGELOG.md b/CHANGELOG.md index d92d47e..5d04092 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2] + +- Fix bug in pip install of v0.2.1 due to scikit-build-core removing all `.metal` files in the source distribution + ## [0.2.1] - Fix bug in pip install of v0.2.0 due to .git folder being included in the source distribution diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 2d2f625..4656526 100644 --- a/llama_cpp/__init__.py +++ b/llama_cpp/__init__.py @@ -1,4 +1,4 @@ from .llama_cpp import * from .llama import * -__version__ = "0.2.1" \ No newline at end of file +__version__ = "0.2.2" \ No newline at end of file