From f5c74473a730af2c343e9cc777a3f6cb0f8d7d8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 3 Mar 2023 21:43:34 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.2.0=20=E2=86=92=200.3.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 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",