From 9436efa4b97ddc5fb48645a66f1900d77b06c00d Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sat, 10 Feb 2024 20:27:36 -0500 Subject: [PATCH] Bumped the version. --- CHANGES.txt | 7 +++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysnmp/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 0ce671dfe..d14d038f5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,10 @@ +Revision 5.0.35, released 2024-2-10 +----------------------------------- + +- Improved asyncio "runDispatcher" method to support timeout. +- Changed internal defaults to asyncio. +- Converted asyncore samples to asyncio. + Revision 5.0.34, released 2024-2-4 ---------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 4e46e5813..59fb1773c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,7 +65,7 @@ # The short X.Y version. version = '5.0' # The full version, including alpha/beta/rc tags. -release = '5.0.34' +release = '5.0.35' # 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 de7e0557e..f2210bc44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp-lextudio" -version = "5.0.34" +version = "5.0.35" description = "" authors = ["Ilya Etingof ", "Lex Li "] license = "BSD-2-Clause" diff --git a/pysnmp/__init__.py b/pysnmp/__init__.py index d4ca36ba7..696fda90f 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = '5.0.34' +__version__ = '5.0.35' # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility