Skip to content

Commit

Permalink
Merge pull request #388 from JkhatriInfobox/DOC/release_notes_0.6.2
Browse files Browse the repository at this point in the history
Release notes for v0.6.2
  • Loading branch information
sarya-infoblox authored Dec 18, 2024
2 parents 6ea8df9 + a2720ba commit 00d5f06
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
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

0 comments on commit 00d5f06

Please sign in to comment.