From c05704a85fc1d1f2e2d09d1c032d8acbad361245 Mon Sep 17 00:00:00 2001 From: Jeenitkumar Khatri Date: Fri, 15 Nov 2024 17:47:45 +0530 Subject: [PATCH] Bumped version from 0.6.0 to 0.6.1 --- .travis.yml | 3 --- HISTORY.rst | 6 ++++++ README.rst | 2 +- infoblox_client/__init__.py | 2 +- setup.py | 4 +--- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1e25b3..aa0346e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,6 @@ language: python matrix: include: - - python: 3.5 - env: - - TOXENV=py35 - python: 3.6 env: - TOXENV=py36 diff --git a/HISTORY.rst b/HISTORY.rst index e3d46f1..435c608 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.6.1 (2024-11-15) +__________________ +* Resolved the problem with cookie management and re-authentication upon cookie expiration #384; +* Dropped support for Python versions below 3.6 #384; + + 0.6.0 (2022-11-18) __________________ * Added support for Python version 3.9 #352; diff --git a/README.rst b/README.rst index 24bff46..610caa9 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.6.0 verison release. check infoblox_client/objects.py for description of the objects. +All NIOS Objects are supported in the 0.6.1 version 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 f254cd4..4ce56f2 100644 --- a/infoblox_client/__init__.py +++ b/infoblox_client/__init__.py @@ -1,3 +1,3 @@ __author__ = 'John Belamaric' __email__ = 'jbelamaric@infoblox.com' -__version__ = '0.6.0' +__version__ = '0.6.1' diff --git a/setup.py b/setup.py index 13d6a10..cfa90d0 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='infoblox-client', - version='0.6.0', + version='0.6.1', description="Client for interacting with Infoblox NIOS over WAPI", long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', @@ -45,8 +45,6 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',