From 635f96b5ced3146369edfef3952d3acec2ca894a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 29 May 2024 04:17:28 +0000 Subject: [PATCH] chore(release): 0.0.3 --- docs/changelog.md | 8 ++++++++ pyproject.toml | 2 +- src/retsu/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index bd02041..8c7064f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,14 @@ # Release Notes --- +## [0.0.3](https://github.com/osl-incubator/retsu/compare/0.0.2...0.0.3) (2024-05-29) + + +### Bug Fixes + +* Fix initial issues with the structure and the example ([#5](https://github.com/osl-incubator/retsu/issues/5)) ([7d520f9](https://github.com/osl-incubator/retsu/commit/7d520f90606412bb3c77d4444fefed871684e034)) +* wait for the celery task until the end of the execution. ([#6](https://github.com/osl-incubator/retsu/issues/6)) ([f1ba586](https://github.com/osl-incubator/retsu/commit/f1ba5865f3bd115e978b8b0b9ccfc8639d34983a)) + ## [0.0.2](https://github.com/osl-incubator/retsu/compare/0.0.1...0.0.2) (2024-05-28) diff --git a/pyproject.toml b/pyproject.toml index 969d3d5..5284852 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "retsu" -version = "0.0.2" # semantic-release +version = "0.0.3" # 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 c5b0d71..1daff27 100644 --- a/src/retsu/__init__.py +++ b/src/retsu/__init__.py @@ -15,7 +15,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "0.0.2" # semantic-release + return "0.0.3" # semantic-release version = get_version()