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

Release notes for v0.6.2 #388

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
12 changes: 12 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2

build:
os: "ubuntu-22.04"
tools:
python: "3.8"

sphinx:
configuration: docs/conf.py

formats:
- pdf
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
History
-------

0.6.2 (2024-12-18)
__________________
* Enhanced debug logs for connector #387;
* Updated masked exception messages with WAPI response #387;
* Deprecation of delete_all_associated_objects

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.1 version release. check infoblox_client/objects.py for description of the objects.
All NIOS Objects are supported in the 0.6.2 version release. check infoblox_client/objects.py for description of the objects.
Newly supported objects

* ``AAAADtcRecord``
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ BUILDDIR = _build

# User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you do not have Sphinx installed, grab it from http://sphinx-doc.org/)
endif

# Internal variables.
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.1'
__version__ = '0.6.2'
2 changes: 1 addition & 1 deletion 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.1',
version='0.6.2',
description="Client for interacting with Infoblox NIOS over WAPI",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
Expand Down
Loading