From 203ede4ba2ae74c1dff03f3033227f828bc83c1c Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 13 Sep 2023 18:07:08 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfa9c51..a240b1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3] + +- Update llama.cpp to ggerganov/llama.cpp@71ca2fad7d6c0ef95ef9944fb3a1a843e481f314 +- Add X-Request-ID request header for mirroring custom IDs by @devrimcavusoglu in #703 +- Add pyproject extra for scikit-build-core to ensure compatible pathspec version by @abetlen in 6cfc54284b99ef1bff8193e2d5e483dbd89ada02 +- Fix issue with Literal and Optional cli arguments not working by @abetlen in #702 + ## [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 (see #701) diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 4656526..c284460 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.2" \ No newline at end of file +__version__ = "0.2.3" \ No newline at end of file