Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v2
Expand All @@ -30,5 +30,5 @@ jobs:
- name: Test Unit Tests
run: |
make develop
cd tests
cd src/rest/connector/tests
python -m unittest
18 changes: 18 additions & 0 deletions docs/changelog/2026/march.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
March 2026
==========

March 31 - Rest v26.3
------------------------



.. csv-table:: New Module Versions
:header: "Modules", "Version"

``rest.connector``, v26.3




Changelogs
^^^^^^^^^^
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
.. toctree::
:maxdepth: 2

2026/march
2026/february
2026/january
2025/december
Expand Down
2 changes: 1 addition & 1 deletion src/rest/connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
the device via REST api"""

# metadata
__version__ = "26.2"
__version__ = "26.3"
__author__ = ['Jean-Benoit Aubin <jeaubin@cisco.com>',
'Takashi Higashimura (tahigash) <tahigash@cisco.com>']

Expand Down
Loading