Skip to content

Commit

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

# [0.3.0](https://github.com/osl-incubator/rago/compare/0.2.0...0.3.0) (2024-10-24)


### Bug Fixes

* Fix packaging for gpu and cpu ([#8](https://github.com/osl-incubator/rago/issues/8)) ([42e0716](https://github.com/osl-incubator/rago/commit/42e071607f38ef37130bbb1f24bcfde6e93b1dc3))
* Improve the usage of typeguard ([#5](https://github.com/osl-incubator/rago/issues/5)) ([25782c1](https://github.com/osl-incubator/rago/commit/25782c1db85024fa117b70db61b02fcea16b6f46))


### Features

* Add parameter for selecting device (cpu and gpu) ([#6](https://github.com/osl-incubator/rago/issues/6)) ([552d912](https://github.com/osl-incubator/rago/commit/552d91259a813163224a25c466d2c1fecff6a982))
* Implement type checking with typeguard ([#4](https://github.com/osl-incubator/rago/issues/4)) ([ae7958e](https://github.com/osl-incubator/rago/commit/ae7958e501f0964a62411449184c27bed3c9413f))

# [0.2.0](https://github.com/osl-incubator/rago/compare/0.1.0...0.2.0) (2024-10-23)


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.2.0" # semantic-release
version = "0.3.0" # semantic-release
description = "Rago is a lightweight framework for RAG"
readme = "README.md"
authors = ["Ivan Ogasawara <[email protected]>"]
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.2.0' # semantic-release
return '0.3.0' # semantic-release


version = get_version()
Expand Down

0 comments on commit eede0d2

Please sign in to comment.