diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e4f80e..1acaa1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.6.1 (2024-08-07) + +### Fix + +* fix: fix cache behavior for gemma2 and warn if caching breaks (#9) ([`18a7bfc`](https://github.com/chanind/linear-relational/commit/18a7bfc27dd313da4b02a0d717b42c195075a5ec)) + + ## v0.6.0 (2024-08-04) ### Feature diff --git a/linear_relational/__init__.py b/linear_relational/__init__.py index c0daf20..fc7a515 100644 --- a/linear_relational/__init__.py +++ b/linear_relational/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.6.0" +__version__ = "0.6.1" from .CausalEditor import ( CausalEditor, diff --git a/pyproject.toml b/pyproject.toml index 4392e35..074e9f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "linear-relational" -version = "0.6.0" +version = "0.6.1" description = "A Python library for working with Linear Relational Embeddings (LREs) and Linear Relational Concepts (LRCs) for LLMs" authors = ["David Chanin "] readme = "README.md"