Skip to content

Commit

Permalink
bump: version 0.3.0 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 4, 2023
1 parent 849e6df commit 3c5c110
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.4.0 (2023-03-04)

### Feat

- add multiply function

## 0.3.0 (2023-03-03)

### 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, subtract

__version__ = "0.3.0"
__version__ = "0.4.0"

__all__ = ["add", "subtract", "multiply"]
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.3.0"
version = "0.4.0"
description = "Just a package."
license = "MIT"
authors = ["Federico Trifoglio <[email protected]>"]
Expand Down Expand Up @@ -82,7 +82,7 @@ filterwarnings = [

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

0 comments on commit 3c5c110

Please sign in to comment.