Skip to content

Commit

Permalink
bump: version 0.5.0 → 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 6, 2023
1 parent 457bc8e commit 4c6191f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.5.1 (2023-03-06)

### Fix

- fix typing hints of math module

## 0.5.0 (2023-03-04)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from .math import add, exponentiate, multiply, subtract

__version__ = "0.5.0"
__version__ = "0.5.1"

__all__ = ["add", "subtract", "multiply", "exponentiate"]
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "package"
version = "0.5.0"
version = "0.5.1"
description = "Just a package."
license = "MIT"
authors = ["Federico Trifoglio <federico.trifoglio@assemblyglobal.com>"]
Expand Down Expand Up @@ -82,7 +82,7 @@ filterwarnings = [

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.5.0"
version = "0.5.1"
tag_format = "$version"
version_files = [
"package/__init__.py",
Expand Down

0 comments on commit 4c6191f

Please sign in to comment.