Skip to content

Commit

Permalink
chore(release): 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Nov 19, 2024
1 parent 14b4dd5 commit 5768119
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Release Notes
---

# [0.8.0](https://github.com/osl-incubator/rago/compare/0.7.1...0.8.0) (2024-11-19)


### Features

* Add an attribute for logs to keep more information for all the steps ([#22](https://github.com/osl-incubator/rago/issues/22)) ([89b19bb](https://github.com/osl-incubator/rago/commit/89b19bbd0a24a4b3e208d2dcb53a11ef67bf5bb5))
* **aug:** Add support for SpaCy augmented class ([#23](https://github.com/osl-incubator/rago/issues/23)) ([14b4dd5](https://github.com/osl-incubator/rago/commit/14b4dd53961f7d5990b369bbe1bf7f729acc2060))

## [0.7.1](https://github.com/osl-incubator/rago/compare/0.7.0...0.7.1) (2024-11-15)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "rago"
version = "0.7.1" # semantic-release
version = "0.8.0" # semantic-release
description = "Rago is a lightweight framework for RAG"
readme = "README.md"
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/rago/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return '0.7.1' # semantic-release
return '0.8.0' # semantic-release


version = get_version()
Expand Down

0 comments on commit 5768119

Please sign in to comment.