From f3bc03162d15b1ad70a76b7315ccd406ab62592f Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sun, 13 Oct 2024 20:42:13 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 5 +++++ SECURITY.md | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysnmp/__init__.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8d77731c..8a3a7a82 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 7.1.7, released on Oct 13, 2024 +---------------------------------------- + +- Fixed two bugs in MIB related code and improved compatibility layer. + Revision 7.1.6, released on Oct 12, 2024 ---------------------------------------- diff --git a/SECURITY.md b/SECURITY.md index eb546d42..8d30bfcf 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.6 | TBD | EOL to be determined | +| 7.1 | 7.1.7 | 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 4c620d65..4727dd49 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.6" +release = "7.1.7" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/pyproject.toml b/pyproject.toml index f5aef0f7..85960b57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "7.1.6" +version = "7.1.7" 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 1fa20b81..758b0ad7 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.6" +__version__ = "7.1.7" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility