diff --git a/CHANGELOG.md b/CHANGELOG.md index de07100..ec499d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.23] + +- Update llama.cpp to ggerganov/llama.cpp@948ff137ec37f1ec74c02905917fa0afc9b97514 +- Add qwen chat format by @yhfgyyf in #1005 +- Add support for running the server with SSL by @rgerganov in #994 +- Replace logits_to_logprobs implementation with numpy equivalent to llama.cpp by @player1537 in #991 +- Fix UnsupportedOperation: fileno in suppress_stdout_stderr by @zocainViken in #961 +- Add Pygmalion chat format by @chiensen in #986 +- README.md multimodal params fix by @zocainViken in #967 +- Fix minor typo in README by @aniketmaurya in #958 + ## [0.2.22] - Update llama.cpp to ggerganov/llama.cpp@8a7b2fa528f130631a5f43648481596ab320ed5a diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 6227e0e..469eba2 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.22" \ No newline at end of file +__version__ = "0.2.23" \ No newline at end of file