From c96b268892b22d68e4aa9b8ca207103121b0732f Mon Sep 17 00:00:00 2001 From: Lex Li Date: Tue, 16 Jul 2024 22:03:14 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.txt | 10 ++++++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysnmp/__init__.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 74de46c96..14fb98738 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +Revision 6.0.13, released 2024-7-16 +----------------------------------- + +- Removed package postfix. A helper release to enable migration. + Revision 6.0.12, released 2024-3-23 ----------------------------------- @@ -68,6 +73,11 @@ Revision 6.0.0, released 2024-2-10 - Changed internal defaults to asyncio. - Converted asyncore samples to asyncio. +Revision 5.1.0, released 2024-7-16 +----------------------------------- + +- Removed package postfix. A helper release to enable migration. + Revision 5.0.34, released 2024-2-4 ---------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 343e3ce1c..d7a75dc63 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = "6.0" # The full version, including alpha/beta/rc tags. -release = "6.0.12" +release = "6.0.13" # 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 e5ff3ef1a..2b6dba5cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnmp" -version = "6.0.12" +version = "6.0.13" description = "" authors = ["Ilya Etingof ", "LeXtudio Inc. "] license = "BSD-2-Clause" diff --git a/pysnmp/__init__.py b/pysnmp/__init__.py index 4a921f4bf..f272adbc7 100644 --- a/pysnmp/__init__.py +++ b/pysnmp/__init__.py @@ -1,5 +1,5 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "6.0.12" +__version__ = "6.0.13" # another variable is required to prevent semantic release from updating version in more than one place main_version = __version__ # backward compatibility