From 65edc906712eb205afaedc7d69f27e33be162228 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Fri, 26 Apr 2024 10:11:31 -0400 Subject: [PATCH] chore: Bump version --- CHANGELOG.md | 5 +++++ llama_cpp/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b883552..806876ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.65] + +- feat: Update llama.cpp to ggerganov/llama.cpp@46e12c4692a37bdd31a0432fc5153d7d22bc7f72 +- feat: Allow for possibly non-pooled embeddings by @iamlemec in #1380 + ## [0.2.64] - feat: Update llama.cpp to ggerganov/llama.cpp@4e96a812b3ce7322a29a3008db2ed73d9087b176 diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index f73645874..6db6333ba 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.64" \ No newline at end of file +__version__ = "0.2.65" \ No newline at end of file