From ad9c784fa9eb4b46627942d5f6a741d3137f21b7 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Wed, 17 Jul 2024 21:08:36 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 5 +++++ docs/source/conf.py | 2 +- docs/source/upgrade.rst | 10 +++++----- poetry.lock | 2 +- pyproject.toml | 2 +- pysnmp/__init__.py | 2 +- 6 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3da401e4..674aab88 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 6.2.3, released on July 17, 2024 +----------------------------------------- + +- Removed unused dependencies. + Revision 6.2.2, released on July 16, 2024 ----------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index c4991698..5fcd139e 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.2" +release = "6.2.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/upgrade.rst b/docs/source/upgrade.rst index 78acdb02..31794ed6 100644 --- a/docs/source/upgrade.rst +++ b/docs/source/upgrade.rst @@ -118,7 +118,7 @@ the code base, .. important:: We only published 5.1.0 release, and we are not planning to publish any - more 5.x releases. The 5.1.0 release was published to ensure a smooth + more 5.x releases. The 5.1.0 release was published to ensure smooth transition for users who are still using the 4.x releases. We consider the 5.1.0 release as a stepping stone to the 6.x releases, @@ -150,7 +150,7 @@ compatible with PySMI 1.2. So we decided to keep PySNMP 6.0 with PySMI 1.2. .. important:: We only published 6.0.13 release, and we are not planning to publish any - more 6.0 releases. The 6.0.13 release was published to ensure a smooth + more 6.0 releases. The 6.0.13 release was published to ensure smooth transition for users who are still using the 4.x/5.x releases. We consider the 6.0.13 release as a stepping stone to the 6.1 releases, @@ -168,7 +168,7 @@ above. .. important:: We only published 6.1.3 release, and we are not planning to publish any - more 6.1 releases. The 6.1.3 release was published to ensure a smooth + more 6.1 releases. The 6.1.3 release was published to ensure smooth transition for users who are still using the 4.x/5.x/6.0 releases. We consider the 6.1.3 release as a stepping stone to the 6.2 releases, @@ -182,8 +182,8 @@ we decided to remove it from 6.2 release. .. important:: - We only published 6.2.2 release, and we are not planning to publish any - older 6.2 releases. The 6.2.2 release was published to ensure a smooth + We published release >=6.2.2, and we are not planning to publish any + older 6.2 releases. The new 6.2 releases were published to ensure smooth transition for users who are still using the 4.x/5.x/6.0/6.1 releases. Important Changes diff --git a/poetry.lock b/poetry.lock index 296d9cdb..e688c4af 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1354,4 +1354,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "8626ecfb7b745206c4eb40ef0efcfe2534b46da0eb82a8d73487515be5939bf2" +content-hash = "97aeb40f758facd706e5d99ba569eb3c7577f86307ef28f9afba4723db7323ec" diff --git a/pyproject.toml b/pyproject.toml index a8e3eee8..7d19cbf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "6.2.2" +version = "6.2.3" 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 375ac57d..54ea6929 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "6.2.2" +__version__ = "6.2.3" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility