Skip to content

Commit

Permalink
chore(release): 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Aug 16, 2024
1 parent c4654d7 commit a8da88f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes
---

## [0.2.4](https://github.com/osl-incubator/retsu/compare/0.2.3...0.2.4) (2024-08-16)


### Bug Fixes

* Fix __del__ and rename create_processes to setup ([#18](https://github.com/osl-incubator/retsu/issues/18)) ([c4654d7](https://github.com/osl-incubator/retsu/commit/c4654d77623477bbae0b86b0cb841bd8595593fb))

## [0.2.3](https://github.com/osl-incubator/retsu/compare/0.2.2...0.2.3) (2024-08-16)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "retsu"
version = "0.2.3" # semantic-release
version = "0.2.4" # 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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/retsu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.2.3" # semantic-release
return "0.2.4" # semantic-release


version = get_version()
Expand Down

0 comments on commit a8da88f

Please sign in to comment.