From 3c5c110ad16f25b3428e4fdb47afe09999cb8e2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 4 Mar 2023 19:02:21 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.0=20=E2=86=92=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ package/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd069a7..4b23376 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.0 (2023-03-04) + +### Feat + +- add multiply function + ## 0.3.0 (2023-03-03) ### Feat diff --git a/package/__init__.py b/package/__init__.py index ff9bc1c..e4fc048 100644 --- a/package/__init__.py +++ b/package/__init__.py @@ -2,6 +2,6 @@ from .math import add, subtract -__version__ = "0.3.0" +__version__ = "0.4.0" __all__ = ["add", "subtract", "multiply"] diff --git a/pyproject.toml b/pyproject.toml index 20e87b8..e6c51e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] @@ -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",