diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ce94107..488e706 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] commit = True tag = False -current_version = 1.0.2 +current_version = 1.0.3 [bumpversion:file:setup.py] diff --git a/CHANGELOG.md b/CHANGELOG.md index af1a7a3..0dadf2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,12 @@ When searching for addresses in an empty subnet, ```PHPEntityNotFoundException``` will be raised. +* \#63 - Fix deprecation warning issue + +As pkg_resources was deprecated we switched to importlib.metadata to get the same data. + +* \#64 - Fix test suite issues + ### Breaks ## 1.0.2 - (2021-09-02) diff --git a/setup.py b/setup.py index 02f2ab0..4c3a5eb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="phpypam", - version="1.0.2", + version="1.0.3", author="Christian Meißner", author_email="Christian Meißner ", description="Python API client library for phpIPAM installation",