From c26210fd436ff50f9618a30fa8d4f1ed7bdb0e40 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 4 Aug 2024 16:50:32 +0000 Subject: [PATCH] 0.6.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ linear_relational/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7651c4f..5e4f80e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.6.0 (2024-08-04) + +### Feature + +* feat: adding LRE forward() method (#8) ([`9558e5f`](https://github.com/chanind/linear-relational/commit/9558e5fffacfd7992bfaad08ff8f0c961e648921)) + + ## v0.5.2 (2024-08-04) ### Fix diff --git a/linear_relational/__init__.py b/linear_relational/__init__.py index 9f08e0a..c0daf20 100644 --- a/linear_relational/__init__.py +++ b/linear_relational/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.2" +__version__ = "0.6.0" from .CausalEditor import ( CausalEditor, diff --git a/pyproject.toml b/pyproject.toml index 3744b94..4392e35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "linear-relational" -version = "0.5.2" +version = "0.6.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"