diff --git a/CHANGELOG.md b/CHANGELOG.md index 518841a..21ec7ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.5.0 (2024-06-30) + +### Feature + +* feat: improving Lre __repr__() ([`011d936`](https://github.com/chanind/linear-relational/commit/011d9369ff73c390ac53457138e067a18a5909c9)) + + ## v0.4.0 (2024-06-29) ### Feature diff --git a/linear_relational/__init__.py b/linear_relational/__init__.py index 0636577..b7243d4 100644 --- a/linear_relational/__init__.py +++ b/linear_relational/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" from .CausalEditor import ( CausalEditor, diff --git a/pyproject.toml b/pyproject.toml index 196b9e2..170b1e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "linear-relational" -version = "0.4.0" +version = "0.5.0" description = "A Python library for working with Linear Relational Embeddings (LREs) and Linear Relational Concepts (LRCs) for LLMs" authors = ["David Chanin "] readme = "README.md"