From 85c568e13ea640ea008029cc44720fdee36f477e Mon Sep 17 00:00:00 2001 From: Lex Li Date: Mon, 26 Feb 2024 12:16:36 -0500 Subject: [PATCH] Bumped the version. --- CHANGES.txt | 6 ++++++ docs/source/conf.py | 2 +- pyproject.toml | 6 +++--- pysnmp/__init__.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index aff221cca..2afde81f5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,10 @@ +Revision 6.0.3, released 2024-2-26 +---------------------------------- + +- Deleted asyncore related bits. + Revision 6.0.2, released 2024-2-13 +---------------------------------- - Simplified asyncio dispatch. - Added ignoreNonIncreasingOid option to nextCmd and bulkCmd. diff --git a/docs/source/conf.py b/docs/source/conf.py index 852c4bca5..6cd4de316 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,7 +65,7 @@ # The short X.Y version. version = "6.0" # The full version, including alpha/beta/rc tags. -release = "6.0.2" +release = "6.0.3" # 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 913f2a3a1..ecfc9a1ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp-lextudio" -version = "6.0.2" +version = "6.0.3" description = "" authors = ["Ilya Etingof ", "Lex Li "] license = "BSD-2-Clause" @@ -46,8 +46,8 @@ pre-commit = "2.21.0" [tool.poetry_bumpversion.file."pysnmp/__init__.py"] [tool.poetry_bumpversion.file."docs/source/conf.py"] -search = "release = '{current_version}'" -replace = "release = '{new_version}'" +search = "release = \"{current_version}\"" +replace = "release = \"{new_version}\"" [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/pysnmp/__init__.py b/pysnmp/__init__.py index c3c715a2e..02e7d5f7e 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "6.0.2" +__version__ = "6.0.3" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility