Skip to content

Commit 00d5f06

Browse files
Merge pull request #388 from JkhatriInfobox/DOC/release_notes_0.6.2
Release notes for v0.6.2
2 parents 6ea8df9 + a2720ba commit 00d5f06

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed

.readthedocs.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
3+
build:
4+
os: "ubuntu-22.04"
5+
tools:
6+
python: "3.8"
7+
8+
sphinx:
9+
configuration: docs/conf.py
10+
11+
formats:
12+
- pdf

HISTORY.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@
33
History
44
-------
55

6+
0.6.2 (2024-12-18)
7+
__________________
8+
* Enhanced debug logs for connector #387;
9+
* Updated masked exception messages with WAPI response #387;
10+
* Deprecation of delete_all_associated_objects
11+
612
0.6.1 (2024-11-15)
713
__________________
814
* Resolved the problem with cookie management and re-authentication upon cookie expiration #384;
915
* Dropped support for Python versions below 3.6 #384;
1016

11-
1217
0.6.0 (2022-11-18)
1318
__________________
1419
* Added support for Python version 3.9 #352;

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ All top level objects support interface for CRUD operations. List of supported o
203203

204204
Supported NIOS objects
205205
----------------------
206-
All NIOS Objects are supported in the 0.6.1 version release. check infoblox_client/objects.py for description of the objects.
206+
All NIOS Objects are supported in the 0.6.2 version release. check infoblox_client/objects.py for description of the objects.
207207
Newly supported objects
208208

209209
* ``AAAADtcRecord``

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDDIR = _build
99

1010
# User-friendly check for sphinx-build
1111
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12-
$(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/)
12+
$(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/)
1313
endif
1414

1515
# Internal variables.

infoblox_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = 'John Belamaric'
22
__email__ = 'jbelamaric@infoblox.com'
3-
__version__ = '0.6.1'
3+
__version__ = '0.6.2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='infoblox-client',
26-
version='0.6.1',
26+
version='0.6.2',
2727
description="Client for interacting with Infoblox NIOS over WAPI",
2828
long_description=readme + '\n\n' + history,
2929
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)