From 8e13520796cdf614212cb1e15856c3c4f27b2a00 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 13 Sep 2023 01:47:58 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ llama_cpp/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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