diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..0dee41b --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,12 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.8" + +sphinx: + configuration: docs/conf.py + +formats: + - pdf diff --git a/HISTORY.rst b/HISTORY.rst index 435c608..5613712 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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; diff --git a/README.rst b/README.rst index 610caa9..91a54e4 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.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`` diff --git a/docs/Makefile b/docs/Makefile index 64f3cd2..d7cbc8b 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -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. diff --git a/infoblox_client/__init__.py b/infoblox_client/__init__.py index 4ce56f2..4d9bf6d 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.1' +__version__ = '0.6.2' diff --git a/setup.py b/setup.py index cfa90d0..8061207 100755 --- a/setup.py +++ b/setup.py @@ -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',