Skip to content

Commit

Permalink
Bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Nov 2, 2024
1 parent 97ada75 commit 80394d9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Revision 1.5.8, released on Nov 02, 2024
----------------------------------------

- Fixed fixed-length OCTET STRING handling.

Revision 1.5.7, released on Nov 01, 2024
----------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "1.5"
# The full version, including alpha/beta/rc tags.
release = "1.5.7"
release = "1.5.8"
# The short X.Y version.
version = ".".join(release.split(".")[:2])

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysmi"
version = "1.5.7"
version = "1.5.8"
description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library."
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion pysmi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# http://www.python.org/dev/peps/pep-0396/
__version__ = "1.5.7"
__version__ = "1.5.8"

0 comments on commit 80394d9

Please sign in to comment.