diff --git a/CHANGELOG.md b/CHANGELOG.md index b6493e0..f21c91b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/apoclyps/python-package-publish/compare/0.2.0...0.3.0) (2023-11-15) + + +### 🚀 Features + +* implements HTTP client ([#13](https://github.com/apoclyps/python-package-publish/issues/13)) ([dbf5a3b](https://github.com/apoclyps/python-package-publish/commit/dbf5a3b7bcf7c659acd11b0c2e9a192b036789ce)) + ## [0.2.0](https://github.com/apoclyps/python-package-publish/compare/0.1.0...0.2.0) (2023-11-15) diff --git a/pyproject.toml b/pyproject.toml index c991023..205c118 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-package-publish" -version = "0.2.0" +version = "0.3.0" description = "A common shared library to demonstrate python package publishing" authors = ["Kyle Harrison "] packages = [{ include = "python_package_publish" }] diff --git a/python_package_publish/version.py b/python_package_publish/version.py index d3ec452..493f741 100644 --- a/python_package_publish/version.py +++ b/python_package_publish/version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0"