Skip to content

Commit 70f5cd5

Browse files
chore(release): 0.3.0
1 parent 41c6fb3 commit 70f5cd5

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

docs/changelog.md

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

4+
# [0.3.0](https://github.com/osl-incubator/retsu/compare/0.2.4...0.3.0) (2024-08-18)
5+
6+
7+
### Features
8+
9+
* Add initial support for async processes ([#19](https://github.com/osl-incubator/retsu/issues/19)) ([7ce37d1](https://github.com/osl-incubator/retsu/commit/7ce37d12990029d2d2d02446b4fd5fc7040205f0))
10+
* Add wrap-up decorator for managing celery tasks ([#20](https://github.com/osl-incubator/retsu/issues/20)) ([41c6fb3](https://github.com/osl-incubator/retsu/commit/41c6fb37a19c376b010aae13c22f1ac43cbd80fe))
11+
412
## [0.2.4](https://github.com/osl-incubator/retsu/compare/0.2.3...0.2.4) (2024-08-16)
513

614

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "retsu"
7-
version = "0.2.4" # semantic-release
7+
version = "0.3.0" # semantic-release
88
description = "Retsu aims to wrap-up Celery in way to facilitate to create parallel and serial tasks"
99
readme = "README.md"
1010
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.2.4" # semantic-release
21+
return "0.3.0" # semantic-release
2222

2323

2424
version = get_version()

0 commit comments

Comments
 (0)