diff --git a/CHANGES.rst b/CHANGES.rst index 7ecea402..4fdbabe1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 6.2.0, released on Jul 12, 2024 +---------------------------------------- + +- Retired temporary sync API. + Revision 6.1.2, released on Mar 25, 2024 ---------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 96066cf9..6093ccb8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = "6.1" +version = "6.2" # The full version, including alpha/beta/rc tags. -release = "6.1.2" +release = "6.2.0" # 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 6a90ee4e..b524d601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp-lextudio" -version = "6.1.2" +version = "6.2.0" 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 ce299373..1efa4859 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "6.1.2" +__version__ = "6.2.0" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility