diff --git a/docs/changelog/2025/september.rst b/docs/changelog/2025/september.rst new file mode 100644 index 0000000..2fd172a --- /dev/null +++ b/docs/changelog/2025/september.rst @@ -0,0 +1,27 @@ +September 2025 +========== + +September 30 - Rest v25.9 +------------------------ + + + +.. csv-table:: New Module Versions + :header: "Modules", "Version" + + ``rest.connector``, v25.9 + + + + +Changelogs +^^^^^^^^^^ +-------------------------------------------------------------------------------- + Fix +-------------------------------------------------------------------------------- + +* iosxe + * Modified ``Implementation(RestImplementation)`` + * Added the option to control certificate validation to the device connection, using the ``verify`` parameter (issue #138). + + diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 2cba494..b8612b1 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -4,6 +4,7 @@ Changelog .. toctree:: :maxdepth: 2 + 2025/september 2025/august 2025/july 2025/june diff --git a/docs/changelog/undistributed/issue138_iosxe_cert_validation.rst b/docs/changelog/undistributed/issue138_iosxe_cert_validation.rst deleted file mode 100644 index 3145a1c..0000000 --- a/docs/changelog/undistributed/issue138_iosxe_cert_validation.rst +++ /dev/null @@ -1,6 +0,0 @@ --------------------------------------------------------------------------------- - Fix --------------------------------------------------------------------------------- -* iosxe - * Modified ``Implementation(RestImplementation)``: - * Added the option to control certificate validation to the device connection, using the ``verify`` parameter (issue #138). diff --git a/src/rest/connector/__init__.py b/src/rest/connector/__init__.py index f787746..b081316 100644 --- a/src/rest/connector/__init__.py +++ b/src/rest/connector/__init__.py @@ -2,7 +2,7 @@ the device via REST api""" # metadata -__version__ = "25.8" +__version__ = "25.9" __author__ = ['Jean-Benoit Aubin ', 'Takashi Higashimura (tahigash) ']