diff --git a/docs/changelog.md b/docs/changelog.md index 438b915..3e30fd8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,14 @@ # Release Notes --- +# [0.3.0](https://github.com/osl-incubator/retsu/compare/0.2.4...0.3.0) (2024-08-18) + + +### Features + +* Add initial support for async processes ([#19](https://github.com/osl-incubator/retsu/issues/19)) ([7ce37d1](https://github.com/osl-incubator/retsu/commit/7ce37d12990029d2d2d02446b4fd5fc7040205f0)) +* 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)) + ## [0.2.4](https://github.com/osl-incubator/retsu/compare/0.2.3...0.2.4) (2024-08-16) diff --git a/pyproject.toml b/pyproject.toml index f9d24a9..cd515a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "retsu" -version = "0.2.4" # semantic-release +version = "0.3.0" # 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 "] diff --git a/src/retsu/__init__.py b/src/retsu/__init__.py index 4d02000..1c4bb27 100644 --- a/src/retsu/__init__.py +++ b/src/retsu/__init__.py @@ -18,7 +18,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "0.2.4" # semantic-release + return "0.3.0" # semantic-release version = get_version()