From 7f3704b89687ec9580f025e7db4c4f9f508e457e Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 27 Nov 2023 19:14:25 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 10 ++++++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fbe1e1..28959e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.20] + +- Update llama.cpp to ggerganov/llama.cpp@b38a16dfcff88d547f78f52d1bea31b84a05aff7 +- Add `zephyr` chat format by @fakerybakery in #938 +- Add `baichuan` chat format by @caiyesd in #938 +- Add `baichuan-2` chat format by @caiyesd in #936 +- Improve documentation for server chat formats by @jooray in #934 +- Fix typo in README by @antonvice in 940 +- Fix typo in the Open Orca chat format by @gardner in #947 + ## [0.2.19] - Update llama.cpp to ggerganov/llama.cpp@0b871f1a04ef60e114bbe43004fd9c21114e802d diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index f429c3c..e6032db 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.19" \ No newline at end of file +__version__ = "0.2.20" \ No newline at end of file