From 24fec0b242840db4d0fee9d4dcd0d7d03f3be4b8 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Thu, 14 Sep 2023 18:33: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 22a85a1..3c90a9e 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.5] + +- Fix docker images missing starlette-context dependency by @abetlen in 22917989003c5e67623d54ab45affa1e0e475410 +- Fix loading dll in Windows Isolation Containers by @abetlen in 847466562573191efa655753d9252f308c4fbdb0 +- Fix build issue on m1 macs by @abetlen in dbd3a6d1ed8416a8fd800127251e730153afa305 +- Update docs to gguf and add hw acceleration docs for server by @jasonacox in #688 + ## [0.2.4] - Add NUMA support. **NOTE** low level api users must call llama_backend_init at the start of their programs by abetlen in f4090a0bb2a2a25acfe28d31c82cc1aa273bedee diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index e1e8c72..e1c4eac 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.4" \ No newline at end of file +__version__ = "0.2.5" \ No newline at end of file