Skip to content

Commit 1486777

Browse files
chore(release): 0.2.3
1 parent f4cf368 commit 1486777

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.2.3](https://github.com/osl-incubator/retsu/compare/0.2.2...0.2.3) (2024-08-16)
5+
6+
7+
### Bug Fixes
8+
9+
* 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))
10+
411
## [0.2.2](https://github.com/osl-incubator/retsu/compare/0.2.1...0.2.2) (2024-08-14)
512

613

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.2" # semantic-release
7+
version = "0.2.3" # 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.2" # semantic-release
21+
return "0.2.3" # semantic-release
2222

2323

2424
version = get_version()

0 commit comments

Comments
 (0)