From eb68a472ad9b9594e9b596137cc689ebcdebf381 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sat, 2 Nov 2024 22:22:04 -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 9750a74e..8ac42619 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 7.1.9, released on Nov 02, 2024 +---------------------------------------- + +- Updated built-in MIBs to match latest PySMI compiled results. + Revision 7.1.8, released on Oct 14, 2024 ---------------------------------------- diff --git a/SECURITY.md b/SECURITY.md index 5cbe3bfe..85bf416d 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.8 | TBD | EOL to be determined | +| 7.1 | 7.1.9 | 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 fd646d70..e46ba4a6 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.8" +release = "7.1.9" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/pyproject.toml b/pyproject.toml index 449da3f0..eb3a1b8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "7.1.8" +version = "7.1.9" 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 74010b1b..54cadb5b 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.8" +__version__ = "7.1.9" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility