From 966079ad808d3c322a6b1a3f40e336b328e11f74 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sat, 2 Mar 2024 16:16:12 -0500 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 10 ++++++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysmi/__init__.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8a667de..8906c98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +Revision 1.3.0, 03-02-2024 +-------------------------- + +- Cherry picked two patches. + +Revision 1.2.0, 03-02-2024 +-------------------------- + +- Fixed a JSON output bug. + Revision 1.1.13, 11-02-2023 --------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index d41e9bf..908df59 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,7 +66,7 @@ # The short X.Y version. version = "1.1" # The full version, including alpha/beta/rc tags. -release = "1.1.13" +release = "1.3.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 76faa8b..d6574ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysmi-lextudio" -version = "1.1.13" +version = "1.3.0" description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library." authors = ["Ilya Etingof ", "Lex Li "] license = "BSD-2-Clause" diff --git a/pysmi/__init__.py b/pysmi/__init__.py index 5e34fc4..4103448 100644 --- a/pysmi/__init__.py +++ b/pysmi/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "1.1.13" +__version__ = "1.3.0"