Skip to content

Commit

Permalink
chore(release): 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Jan 21, 2025
1 parent e7a57c1 commit 3978d21
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes
---

# [0.11.0](https://github.com/osl-incubator/rago/compare/0.10.1...0.11.0) (2025-01-21)


### Features

* Add support for extra parameters for RAG generation ([#32](https://github.com/osl-incubator/rago/issues/32)) ([e7a57c1](https://github.com/osl-incubator/rago/commit/e7a57c18194b9d5303a550425bb2e8c4d21fb7b5))

## [0.10.1](https://github.com/osl-incubator/rago/compare/0.10.0...0.10.1) (2025-01-19)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rago"
version = "0.10.1" # semantic-release
version = "0.11.0" # semantic-release
description = "Rago is a lightweight framework for RAG"
readme = "README.md"
authors = [
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.10.1' # semantic-release
return '0.11.0' # semantic-release


version = get_version()
Expand Down

0 comments on commit 3978d21

Please sign in to comment.