From f0159663d922a6a693b1f9aee335d8667ae7f39e Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 10 Jan 2024 02:51:17 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 6 ++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf1665..5061247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.28] + +- feat: Update llama.cpp to ggerganov/llama.cpp@6efb8eb30e7025b168f3fda3ff83b9b386428ad6 +- feat: Add ability to pass in penalize_nl param by @shankinson in #1068 +- fix: print_grammar to stderr by @turian in #1052 + ## [0.2.27] - feat: Update llama.cpp to ggerganov/llama.cpp@b3a7c20b5c035250257d2b62851c379b159c899a diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index d3fe66b..33234fb 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.27" \ No newline at end of file +__version__ = "0.2.28" \ No newline at end of file