Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped version from 0.6.0 to 0.6.1 #385

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ language: python

matrix:
include:
- python: 3.5
env:
- TOXENV=py35
- python: 3.6
env:
- TOXENV=py36
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``
Expand Down
2 changes: 1 addition & 1 deletion infoblox_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = 'John Belamaric'
__email__ = '[email protected]'
__version__ = '0.6.0'
__version__ = '0.6.1'
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down
Loading