From 148677774d392113abc9d065aabf4aa9a2c44518 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 16 Aug 2024 00:50:15 +0000 Subject: [PATCH] chore(release): 0.2.3 --- docs/changelog.md | 7 +++++++ pyproject.toml | 2 +- src/retsu/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index a8f7f59..dcbf596 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +## [0.2.3](https://github.com/osl-incubator/retsu/compare/0.2.2...0.2.3) (2024-08-16) + + +### Bug Fixes + +* Fix function names and fix minor issues ([#17](https://github.com/osl-incubator/retsu/issues/17)) ([f4cf368](https://github.com/osl-incubator/retsu/commit/f4cf368837450cfd95d7554cf75635f5421342d0)) + ## [0.2.2](https://github.com/osl-incubator/retsu/compare/0.2.1...0.2.2) (2024-08-14) diff --git a/pyproject.toml b/pyproject.toml index 492f678..48e8c5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "retsu" -version = "0.2.2" # semantic-release +version = "0.2.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 026828c..9432ea8 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.2" # semantic-release + return "0.2.3" # semantic-release version = get_version()