From d605875772a381d863b3960d14e8eeb52908b561 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 12 Feb 2024 16:28:30 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 8 ++++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ce0b43..d2bb710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.40] + +- feat: Update llama.cpp to ggerganov/llama.cpp@3bdc4cd0f595a6096cca4a64aa75ffa8a3503465 +- feat: Generic chatml Function Calling using chat_format="chatml-function-calling"` by @abetlen in #957 +- fix: Circular dependancy preventing early Llama object free by @notwa in #1176 +- docs: Set the correct command for compiling with syscl support by @akarshanbiswas in #1172 +- feat: use gpu backend for clip if available by @iamlemec in #1175 + ## [0.2.39] - feat: Update llama.cpp to ggerganov/llama.cpp@b08f22c882a1443e6b97081f3ce718a4d1a741f8 diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 837e3c9..ccafd02 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.39" \ No newline at end of file +__version__ = "0.2.40" \ No newline at end of file