From 6ee413d79e9aa321ed95c73f99474a0a13c1a170 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Sat, 30 Sep 2023 13:23:09 -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 0fccf97..67aee69 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.10] + +- Fix bug 'llama_model_params' object has no attribute 'embedding' by @abetlen in 42bb721d64d744242f9f980f2b89d5a6e335b5e4 + ## [0.2.9] - Fix critical bug in pip installation of v0.2.8 due to `.git` directory in ac853e01e1a217a578080a4e1b851d2d08450adf diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 4fdbab4..8155c68 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.9" \ No newline at end of file +__version__ = "0.2.10" \ No newline at end of file