Skip to content

Commit 67e208e

Browse files
chore(release): 0.1.1
1 parent ff29334 commit 67e208e

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22
---
33

4+
## [0.1.1](https://github.com/osl-incubator/retsu/compare/0.1.0...0.1.1) (2024-06-20)
5+
6+
7+
### Bug Fixes
8+
9+
* 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))
10+
411
# [0.1.0](https://github.com/osl-incubator/retsu/compare/0.0.4...0.1.0) (2024-06-07)
512

613

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "retsu"
3-
version = "0.1.0" # semantic-release
3+
version = "0.1.1" # semantic-release
44
description = "Retsu aims to wrap-up Celery in way to facilitate to create parallel and serial tasks"
55
readme = "README.md"
66
authors = ["Ivan Ogasawara <[email protected]>"]

src/retsu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_version() -> str:
1818
try:
1919
return importlib_metadata.version(__name__)
2020
except importlib_metadata.PackageNotFoundError: # pragma: no cover
21-
return "0.1.0" # semantic-release
21+
return "0.1.1" # semantic-release
2222

2323

2424
version = get_version()

0 commit comments

Comments
 (0)