From 23306267a1827578425d7664499afd019715eb3a Mon Sep 17 00:00:00 2001 From: Stuti Arya Date: Tue, 11 Oct 2022 16:47:02 +0530 Subject: [PATCH] bump version to 0.5.2 --- HISTORY.rst | 6 ++++++ README.rst | 2 +- infoblox_client/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d3cc58e1..92b93171 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.5.2 (2022-10-11) +__________________ +* Added Certificate based authentication logic #330; +* Fixed use of EA inheritance in IP Objects #318; +* Fixed missing fields ('ipv4addr', 'ipv6addr') for 'class Member()' #345; + 0.5.1 (2022-03-14) __________________ * Updated connector's urlencoding logic for proper array encoding #287; diff --git a/README.rst b/README.rst index 22d6b0bd..c575fc3c 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.1 verison release. check infoblox_client/objects.py for description of the objects. +All NIOS Objects are supported in the 0.5.2 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 66f0d705..35cbbd20 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.1' +__version__ = '0.5.2' diff --git a/setup.py b/setup.py index 9d6ed233..b3368103 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='infoblox-client', - version='0.5.1', + version='0.5.2', description="Client for interacting with Infoblox NIOS over WAPI", long_description=readme + '\n\n' + history, long_description_content_type='text/markdown',