From 8350de9a185f1c015efddc5eb05e7bc347a7e285 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Thu, 2 Nov 2023 15:53:01 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ llama_cpp/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1591b1..ee3b3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.13] + +- Update llama.cpp to 51b2fc11f7f605fff49725a4540e9a6ef7b51b70 +- Fix name 'open' is not defined exception when deleting model by @abetlen in 011b95d7f34cbfc528af75a892757bd9a20838ab - Fix tokenization of special characters by @antoine-lizee in #850 ## [0.2.12] diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 4c41396..89f0293 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.12" \ No newline at end of file +__version__ = "0.2.13" \ No newline at end of file