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
25 changes: 25 additions & 0 deletions connector/docs/changelog/2025/october.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
October 2025
==========

October 28 - Yang v25.10
------------------------



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

``yang.connector``, v25.10
``yang.ncdiff``, v25.10




Changelogs
^^^^^^^^^^

yang.connector
""""""""""""""

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

2025/october
2025/september
2025/august
2025/july
Expand Down
4 changes: 2 additions & 2 deletions connector/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shlex
import unittest
import subprocess
from setuptools import setup, find_packages, Command
from setuptools import setup, find_namespace_packages, Command
from setuptools.command.test import test

pkg_name = 'yang.connector'
Expand Down Expand Up @@ -156,7 +156,7 @@ def find_version(*paths):
keywords = 'pyats cisco-shared',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
2 changes: 1 addition & 1 deletion connector/src/yang/connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# metadata
__version__ = "25.9"
__version__ = "25.10"
__author__ = (
'Jonathan Yang <[email protected]>',
'Siming Yuan <[email protected]',
Expand Down
4 changes: 2 additions & 2 deletions ncdiff/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shlex
import unittest
import subprocess
from setuptools import setup, find_packages, Command
from setuptools import setup, find_namespace_packages, Command
from setuptools.command.test import test

pkg_name = 'yang.ncdiff'
Expand Down Expand Up @@ -145,7 +145,7 @@ def find_version(*paths):
keywords = 'pyats cisco-shared',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
2 changes: 1 addition & 1 deletion ncdiff/src/yang/ncdiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
edit-config message."""

# metadata
__version__ = "25.9"
__version__ = "25.10"
__author__ = 'Jonathan Yang <[email protected]>'
__contact__ = '[email protected]'
__copyright__ = 'Cisco Systems, Inc.'
Expand Down
4 changes: 2 additions & 2 deletions verifiers/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shlex
import unittest
import subprocess
from setuptools import setup, find_packages, Command
from setuptools import setup, find_namespace_packages, Command

pkg_name = 'yang.verifiers'
pkg_path = '/'.join(pkg_name.split('.'))
Expand Down Expand Up @@ -158,7 +158,7 @@ def find_version(*paths):
keywords='pyats cisco-shared',

# project packages
packages=find_packages(where='src'),
packages=find_namespace_packages(where='src'),

# project directory
package_dir={
Expand Down