diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f3ce4..783689c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,5 @@ + +## v0.3.0 (2022-11-15) +### Feature +* Add automatically versioning to the release process ([`8bba500`](https://github.com/mazulo/pynews_cli/commit/8bba500e5ab1308b2f7ea9eb3b393d2879b663c9)) diff --git a/pyproject.toml b/pyproject.toml index 4e3709d..a6f5eea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pynews" -version = "0.2.2" +version = "0.3.0" description = "PyNews is a simple Python CLI to browse news from HN website" license = {text = "GNU General Public License v3 (GPLv3)"} readme = "README.rst" diff --git a/setup.py b/setup.py index 317cc4b..9a98076 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ "requests==2.28.1", "alive-progress==2.4.1", ] -__version__ = "0.2.2" +__version__ = "0.3.0" setup( name="PyNews",