Skip to content

Commit

Permalink
Bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Feb 26, 2024
1 parent a106fbd commit 85c568e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Revision 6.0.3, released 2024-2-26
----------------------------------

- Deleted asyncore related bits.

Revision 6.0.2, released 2024-2-13
----------------------------------

- Simplified asyncio dispatch.
- Added ignoreNonIncreasingOid option to nextCmd and bulkCmd.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# The short X.Y version.
version = "6.0"
# The full version, including alpha/beta/rc tags.
release = "6.0.2"
release = "6.0.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysnmp-lextudio"
version = "6.0.2"
version = "6.0.3"
description = ""
authors = ["Ilya Etingof <etingof@gmail.com>", "Lex Li <support@lextudio.com>"]
license = "BSD-2-Clause"
Expand Down Expand Up @@ -46,8 +46,8 @@ pre-commit = "2.21.0"
[tool.poetry_bumpversion.file."pysnmp/__init__.py"]

[tool.poetry_bumpversion.file."docs/source/conf.py"]
search = "release = '{current_version}'"
replace = "release = '{new_version}'"
search = "release = \"{current_version}\""
replace = "release = \"{new_version}\""

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion pysnmp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# http://www.python.org/dev/peps/pep-0396/
__version__ = "6.0.2"
__version__ = "6.0.3"
# another variable is required to prevent semantic release from updating version in more than one place
main_version = __version__
# backward compatibility
Expand Down

0 comments on commit 85c568e

Please sign in to comment.