From 013b0888441014a9c99ac22796e02bc0dc4edc5f Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sat, 10 Aug 2024 17:48:50 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 7 +++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysnmp/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a008123b..86709f22 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +Revision 6.2.5, released on Aug 10, 2024 +----------------------------------------- + +- Improved OrderedDict performance. +- User credentials changes are now reflected in the LCD. +- Other cleanup. + Revision 6.2.4, released on Jul 20, 2024 ----------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index c784f5e4..8ae005a4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,7 +67,7 @@ # The short X.Y version. version = "6.2" # The full version, including alpha/beta/rc tags. -release = "6.2.4" +release = "6.2.5" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 3f102be8..6b16d54b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "6.2.4" +version = "6.2.5" 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 361433f8..0b4a0df6 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "6.2.4" +__version__ = "6.2.5" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility