diff --git a/docs/changelog.md b/docs/changelog.md index 406d4e9..bff5d02 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +## [0.7.1](https://github.com/osl-incubator/rago/compare/0.7.0...0.7.1) (2024-11-15) + + +### Bug Fixes + +* Remove experimental augmented classes ([#21](https://github.com/osl-incubator/rago/issues/21)) ([e878012](https://github.com/osl-incubator/rago/commit/e8780125db3c5966493621eb3e5f2a7713ccc419)) + # [0.7.0](https://github.com/osl-incubator/rago/compare/0.6.0...0.7.0) (2024-11-14) diff --git a/pyproject.toml b/pyproject.toml index 90b2b6e..20f6201 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "rago" -version = "0.7.0" # semantic-release +version = "0.7.1" # semantic-release description = "Rago is a lightweight framework for RAG" readme = "README.md" authors = ["Ivan Ogasawara "] diff --git a/src/rago/__init__.py b/src/rago/__init__.py index 7649f34..626c635 100644 --- a/src/rago/__init__.py +++ b/src/rago/__init__.py @@ -10,7 +10,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return '0.7.0' # semantic-release + return '0.7.1' # semantic-release version = get_version()