diff --git a/CHANGELOG.md b/CHANGELOG.md index 21ec7ee..a4ffd73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.5.1 (2024-08-04) + +### Fix + +* fix: relax transformers version ([`fd7b86c`](https://github.com/chanind/linear-relational/commit/fd7b86ce573ab427bf77d37b4e6d7c51be3f00ba)) + + ## v0.5.0 (2024-06-30) ### Feature diff --git a/linear_relational/__init__.py b/linear_relational/__init__.py index b7243d4..847fa17 100644 --- a/linear_relational/__init__.py +++ b/linear_relational/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" from .CausalEditor import ( CausalEditor, diff --git a/pyproject.toml b/pyproject.toml index 5774426..a6f6e50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "linear-relational" -version = "0.5.0" +version = "0.5.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"