From ab131be1ed61bc849f1e6323d48c402cebe63594 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Thu, 7 Nov 2024 20:22:53 -0500 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 cf876b6b..8e7ffab9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 7.1.13, released on Nov 07, 2024 +----------------------------------------- + +- Fixed a resource leak issue. + Revision 7.1.12, released on Nov 06, 2024 ----------------------------------------- diff --git a/SECURITY.md b/SECURITY.md index 4e304586..9ef8e65c 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.12 | TBD | EOL to be determined | +| 7.1 | 7.1.13 | 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 ed93b061..f2ce6e93 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.12" +release = "7.1.13" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/pyproject.toml b/pyproject.toml index b27df47a..074978e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "7.1.12" +version = "7.1.13" 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 13107614..3d48e29f 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.12" +__version__ = "7.1.13" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility