diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5b472cf --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## 0.1.0 (2023-03-03) + +### Feat + +- add first release of package diff --git a/package/__init__.py b/package/__init__.py index c5768ab..6db0d9f 100644 --- a/package/__init__.py +++ b/package/__init__.py @@ -1,6 +1,6 @@ """Package.""" -__version__ = "0.0.9" +__version__ = "0.1.0" def add(a: int, b: int) -> int: diff --git a/pyproject.toml b/pyproject.toml index c0194b6..956433b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "package" -version = "0.0.9" +version = "0.1.0" description = "Just a package." license = "MIT" authors = ["Federico Trifoglio "] @@ -82,7 +82,7 @@ filterwarnings = [ [tool.commitizen] name = "cz_conventional_commits" -version = "0.0.9" +version = "0.1.0" tag_format = "$version" version_files = [ "package/__init__.py",