Skip to content

Commit

Permalink
chore(release): 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Jun 20, 2024
1 parent ff29334 commit 67e208e
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.1.1](https://github.com/osl-incubator/retsu/compare/0.1.0...0.1.1) (2024-06-20)


### Bug Fixes

* Fix `get` command in the result attribute, and add `get_group_tasks` ([#11](https://github.com/osl-incubator/retsu/issues/11)) ([ff29334](https://github.com/osl-incubator/retsu/commit/ff293346b08c3c63d410830e4c68cd9ad428e78f))

# [0.1.0](https://github.com/osl-incubator/retsu/compare/0.0.4...0.1.0) (2024-06-07)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "retsu"
version = "0.1.0" # semantic-release
version = "0.1.1" # semantic-release
description = "Retsu aims to wrap-up Celery in way to facilitate to create parallel and serial tasks"
readme = "README.md"
authors = ["Ivan Ogasawara <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/retsu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.1.0" # semantic-release
return "0.1.1" # semantic-release


version = get_version()
Expand Down

0 comments on commit 67e208e

Please sign in to comment.