From 427d816ebf01c9b2212852e77ce8b9498f176fb1 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Fri, 23 Feb 2024 04:54:08 -0500 Subject: [PATCH] chore: Bump version --- CHANGELOG.md | 9 +++++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa6b4b4..c539ade 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.48] + +- feat: Update llama.cpp to ggerganov/llama.cpp@15499eb94227401bdc8875da6eb85c15d37068f7 +- feat: Add Google's Gemma formatting via chat_format="gemma" by @alvarobartt in #1210 +- feat: support minItems/maxItems in JSON grammar converter by @nopperl in 3921e10770996d95a9eb22c8248bacef39f69365 +- fix: Update from_pretrained defaults to match hf_hub_download and pull to local cache folder by @abetlen in e6d6260a91b7831733f7d1f73c7af46a3e8185ed +- fix: Raise exceptions when llama model or context fails to load by @abetlen in dd22010e85265ae840c76ec835d67a29ed852722 +- docs: Update README.md to fix pip install llama cpp server by @audip in #1187 + ## [0.2.47] - feat: Update llama.cpp to ggerganov/llama.cpp@973053d8b0d04809836b3339a50f68d9c842de90 diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index bd701e3..8c4f400 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.47" \ No newline at end of file +__version__ = "0.2.48" \ No newline at end of file