From 972e1083631638209f29eabc8a8ccbdbc300ef77 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Mon, 14 Oct 2024 04:37:50 -0400 Subject: [PATCH] Bumped the version. --- CHANGES.rst | 5 +++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- pysmi/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2d3a782..e3f16e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Revision 1.5.2, released on Oct 14, 2024 +---------------------------------------- + +- Fixed a few runtime errors. + Revision 1.5.1, released on Oct 13, 2024 ---------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 8125cfd..76b7366 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -69,7 +69,7 @@ # The short X.Y version. version = "1.5" # The full version, including alpha/beta/rc tags. -release = "1.5.1" +release = "1.5.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 79d048b..8b677c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysmi" -version = "1.5.1" +version = "1.5.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 f4d83d2..37480da 100644 --- a/pysmi/__init__.py +++ b/pysmi/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "1.5.1" +__version__ = "1.5.2"