diff --git a/CHANGES.rst b/CHANGES.rst index e3e21e8e..36c8d107 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Revision 7.1.15, released on Dec 05, 2024 +----------------------------------------- + +- Improved shadow cloning patch. +- Fixed v1arch local address issue. + Revision 7.1.14, released on Dec 03, 2024 ----------------------------------------- diff --git a/SECURITY.md b/SECURITY.md index add12793..f3d20123 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,7 +6,7 @@ We provide security updates for each version until its End-of-Life (EOL) date. B | Version | Latest Release | End of Life | Notes | | ------- | -------------- | ----------- | ---------------------------------- | -| 7.1 | 7.1.14 | TBD | EOL to be determined | +| 7.1 | 7.1.15 | TBD | EOL to be determined | | 7.0 | 7.0.4 | 2025-03-11 | Supported for 6 months after 7.1.0 | | 6.2 | 6.2.6 | 2025-08-22 | Supported for 1 year after 7.0.0 | | 6.1 | 6.1.4 | 2025-01-12 | Supported for 6 months after 6.2.0 | diff --git a/docs/source/conf.py b/docs/source/conf.py index 6171c7f4..bd7ba46d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -74,7 +74,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "7.1.14" +release = "7.1.15" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/pyproject.toml b/pyproject.toml index 78efb224..8aed5824 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "7.1.14" +version = "7.1.15" description = "A Python library for SNMP" authors = ["Ilya Etingof ", "LeXtudio Inc. "] license = "BSD-2-Clause" diff --git a/pysnmp/__init__.py b/pysnmp/__init__.py index 7dbb8a5f..c2635408 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -11,7 +11,7 @@ - For backward compatibility, if the version string contains "beta", the string part is removed before converting to a tuple. """ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "7.1.14" +__version__ = "7.1.15" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility