diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5cdc679..a63ea90 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,4 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 [bumpversion:file:ospclientsdk/__init__.py] - diff --git a/CHANGELOG.md b/CHANGELOG.md index e8c1d1c..a4e4a6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,29 @@ -#Version 0.1.0 (2020-07-01) +# Version 0.2.0 (2020-07-06) -##New features +## New features +None + +## Enhancements +* Changed decorator logging to only happen in debug +* Removed the proxy initiation loggin from the shell + +## Bug Fixes +* None + +## Doc Changes +* Updated README to be clearer and fix grammar typos + +## Test/CI Enhancements +* None + + +# Version 0.1.0 (2020-07-01) + +## New features * First initial release of the ospclientsdk * Supports all openstack client commands -##Enhancements +## Enhancements * None ## Bug Fixes diff --git a/ospclientsdk/__init__.py b/ospclientsdk/__init__.py index d3e88c9..912c158 100644 --- a/ospclientsdk/__init__.py +++ b/ospclientsdk/__init__.py @@ -8,5 +8,5 @@ from .shell import ClientShell -__version__ = '0.1.0' +__version__ = '0.2.0' __author__ = 'Danny Baez'