diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fb7835..ce7c5a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.1](https://github.com/spousesupportgroup/postthis/compare/v0.1.0...v0.1.1) (2024-03-10) + + +### Bug Fixes + +* remove unneeded package-name ([9e8e5b1](https://github.com/spousesupportgroup/postthis/commit/9e8e5b1b1e0623b884b9ea15d6997c5496e7c57f)) + ## [0.1.0](https://github.com/spousesupportgroup/postthis/compare/v0.0.17...v0.1.0) (2023-12-11) diff --git a/postthis/__init__.py b/postthis/__init__.py index 9c9b953..2e918a8 100644 --- a/postthis/__init__.py +++ b/postthis/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" __version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")) diff --git a/pyproject.toml b/pyproject.toml index fdf0f3f..98015b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postthis" -version = "0.1.0" +version = "0.1.1" description = "" authors = ["Hendrik "] readme = "README.md"