From ded5d627a5bf1a7e130135b1624d092ad3997edc Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Fri, 23 Feb 2024 11:32:43 -0500 Subject: [PATCH] chore: Bump version --- CHANGELOG.md | 6 ++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c539ade..c1ba40f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.49] + +- fix: module 'llama_cpp.llama_cpp' has no attribute 'c_uint8' in Llama.save_state by @abetlen in db776a885cd4c20811f22f8bd1a27ecc71dba927 +- feat: Auto detect Mixtral's slightly different format by @lukestanley in #1214 + + ## [0.2.48] - feat: Update llama.cpp to ggerganov/llama.cpp@15499eb94227401bdc8875da6eb85c15d37068f7 diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 8c4f400..637f520 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.48" \ No newline at end of file +__version__ = "0.2.49" \ No newline at end of file