From 588f49d3c9983b7add9300e5859386f6597e1d7c Mon Sep 17 00:00:00 2001 From: Lex Li Date: Mon, 25 Mar 2024 22:11:13 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 6 ++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysmi/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a2cd679..b41dc37 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Revision 1.4.2, 03-17-2024 +-------------------------- + +- Implemented a better strict mode. +- Fixed a bug from code merge. + Revision 1.4.1, 03-17-2024 -------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 81ca2ed..b5eff42 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,7 +65,7 @@ # The short X.Y version. version = "1.4" # The full version, including alpha/beta/rc tags. -release = "1.4.1" +release = "1.4.2" # 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 51be7b8..c80c02a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysmi-lextudio" -version = "1.4.1" +version = "1.4.2" description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library." authors = ["Ilya Etingof ", "LeXtudio Inc. "] license = "BSD-2-Clause" diff --git a/pysmi/__init__.py b/pysmi/__init__.py index 52d9647..17a242c 100644 --- a/pysmi/__init__.py +++ b/pysmi/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "1.4.1" +__version__ = "1.4.2"