diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 4ef1938..afabee7 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -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 @@ -30,5 +30,5 @@ jobs: - name: Test Unit Tests run: | make develop - cd tests + cd src/rest/connector/tests python -m unittest diff --git a/docs/changelog/2026/march.rst b/docs/changelog/2026/march.rst new file mode 100644 index 0000000..a3b3200 --- /dev/null +++ b/docs/changelog/2026/march.rst @@ -0,0 +1,18 @@ +March 2026 +========== + +March 31 - Rest v26.3 +------------------------ + + + +.. csv-table:: New Module Versions + :header: "Modules", "Version" + + ``rest.connector``, v26.3 + + + + +Changelogs +^^^^^^^^^^ diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 424ccfa..06813ae 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -4,6 +4,7 @@ Changelog .. toctree:: :maxdepth: 2 + 2026/march 2026/february 2026/january 2025/december diff --git a/src/rest/connector/__init__.py b/src/rest/connector/__init__.py index 546101d..c4fd6ed 100644 --- a/src/rest/connector/__init__.py +++ b/src/rest/connector/__init__.py @@ -2,7 +2,7 @@ the device via REST api""" # metadata -__version__ = "26.2" +__version__ = "26.3" __author__ = ['Jean-Benoit Aubin ', 'Takashi Higashimura (tahigash) ']