Skip to content

Commit

Permalink
chore(release): 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed May 28, 2024
1 parent 6ce350a commit 03b6954
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# Release Notes
---

## [0.0.2](https://github.com/osl-incubator/retsu/compare/0.0.1...0.0.2) (2024-05-28)


### Bug Fixes

* Fix documentation build step ([#3](https://github.com/osl-incubator/retsu/issues/3)) ([1244e73](https://github.com/osl-incubator/retsu/commit/1244e7377442653335cb8db6a1553ae59e39101f))
* Fix issue with semantic-release version pattern ([#4](https://github.com/osl-incubator/retsu/issues/4)) ([6ce350a](https://github.com/osl-incubator/retsu/commit/6ce350a9599ece9f1c263f236924251296b8d3a5))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "retsu"
version = "0.1.0" # semantic-release
version = "0.0.2" # 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 @@ -15,7 +15,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.1.0" # semantic-release
return "0.0.2" # semantic-release


version = get_version()
Expand Down

0 comments on commit 03b6954

Please sign in to comment.