From 7805e64a522c6750eb127bb155b476571de53934 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Fri, 1 Nov 2024 19:53:09 -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 37a00a2..acebf8a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Revision 1.5.7, released on Nov 01, 2024 +---------------------------------------- + +- Various improvements in MIB parsing, including better DEFVAL handling, symbol + name generation, and more. + Revision 1.5.6, released on Oct 29, 2024 ---------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 6f01ac5..c0bab0b 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.6" +release = "1.5.7" # 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 7300352..66ca0d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysmi" -version = "1.5.6" +version = "1.5.7" 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 67e6fd7..1b267d9 100644 --- a/pysmi/__init__.py +++ b/pysmi/__init__.py @@ -1,2 +1,2 @@ # http://www.python.org/dev/peps/pep-0396/ -__version__ = "1.5.6" +__version__ = "1.5.7"