Skip to content

Commit 56f72be

Browse files
chore(release): 0.1.0
1 parent 07379b8 commit 56f72be

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.0](https://github.com/osl-incubator/retsu/compare/0.0.4...0.1.0) (2024-06-07)
5+
6+
7+
### Features
8+
9+
* Add method create_task to the TaskManager class ([07379b8](https://github.com/osl-incubator/retsu/commit/07379b8da2dd3aeef4f7326e9fad8322cadd2db8))
10+
411
## [0.0.4](https://github.com/osl-incubator/retsu/compare/0.0.3...0.0.4) (2024-05-31)
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.0.4" # semantic-release
3+
version = "0.1.0" # 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.0.4" # semantic-release
21+
return "0.1.0" # semantic-release
2222

2323

2424
version = get_version()

0 commit comments

Comments
 (0)