diff --git a/HISTORY.rst b/HISTORY.rst index 6e9373b..efafe59 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.6.0 (2022-11-18) +__________________ +* Added support for Python version 3.9 #352; +* Removed support for Python verion below 3.0 #352; + 0.5.2 (2022-10-12) __________________ * Added Certificate based authentication logic #330; diff --git a/README.rst b/README.rst index c575fc3..24bff46 100644 --- a/README.rst +++ b/README.rst @@ -203,7 +203,7 @@ All top level objects support interface for CRUD operations. List of supported o Supported NIOS objects ---------------------- -All NIOS Objects are supported in the 0.5.2 verison release. check infoblox_client/objects.py for description of the objects. +All NIOS Objects are supported in the 0.6.0 verison release. check infoblox_client/objects.py for description of the objects. Newly supported objects * ``AAAADtcRecord`` diff --git a/infoblox_client/__init__.py b/infoblox_client/__init__.py index 35cbbd2..f254cd4 100644 --- a/infoblox_client/__init__.py +++ b/infoblox_client/__init__.py @@ -1,3 +1,3 @@ __author__ = 'John Belamaric' __email__ = 'jbelamaric@infoblox.com' -__version__ = '0.5.2' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index 54c3ee9..13d6a10 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='infoblox-client', - version='0.5.2', + version='0.6.0', description="Client for interacting with Infoblox NIOS over WAPI", long_description=readme + '\n\n' + history, long_description_content_type='text/markdown',