diff --git a/CHANGELOG.md b/CHANGELOG.md index 3844b76..dd069a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.0 (2023-03-03) + +### Feat + +- extend add and subtract to take more than 2 numbers + ## 0.2.0 (2023-03-03) ### Feat diff --git a/package/__init__.py b/package/__init__.py index 5c1d161..7d7b189 100644 --- a/package/__init__.py +++ b/package/__init__.py @@ -2,6 +2,6 @@ from .math import add, subtract -__version__ = "0.2.0" +__version__ = "0.3.0" __all__ = ["add", "subtract"] diff --git a/pyproject.toml b/pyproject.toml index d4188f0..20e87b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "package" -version = "0.2.0" +version = "0.3.0" description = "Just a package." license = "MIT" authors = ["Federico Trifoglio "] @@ -82,7 +82,7 @@ filterwarnings = [ [tool.commitizen] name = "cz_conventional_commits" -version = "0.2.0" +version = "0.3.0" tag_format = "$version" version_files = [ "package/__init__.py",