Skip to content

Commit b945f89

Browse files
lextmCopilot
andcommitted
Bump version
Co-authored-by: Copilot <copilot@github.com>
1 parent fb148b5 commit b945f89

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 7.1.24
2+
current_version = 7.1.25
33
commit = False
44
tag = False
55
tag_name = {new_version}

CHANGES.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
Revision 7.1.25, released on Apr 23, 2026
2+
-----------------------------------------
3+
4+
- Fixed an error handling bug in walk_cmd.
5+
16
Revision 7.1.24, released on Apr 18, 2026
27
-----------------------------------------
38

4-
- Fixed Counter32 and TimeTicks overflow handling
9+
- Fixed Counter32 and TimeTicks overflow handling.
510
- Improved type hints and test coverage for SET command functions.
611
- Improved `AsyncioDispatcher` to track loop state and ensure proper event
712
loop closure.

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We provide security updates for each version until its End-of-Life (EOL) date. B
66

77
| Version | Latest Release | End of Life | Notes |
88
| ------- | -------------- | ----------- | ---------------------------------- |
9-
| 7.1 | 7.1.24 | TBD | EOL to be determined |
9+
| 7.1 | 7.1.25 | TBD | EOL to be determined |
1010
| 7.0 | 7.0.4 | 2025-03-11 | Reached EOL |
1111
| 6.2 | 6.2.6 | 2025-08-22 | Reached EOL |
1212
| 6.1 | 6.1.4 | 2025-01-12 | Reached EOL |

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
# built documents.
7575
#
7676
# The full version, including alpha/beta/rc tags.
77-
release = "7.1.24"
77+
release = "7.1.25"
7878
# The short X.Y version.
7979
version = ".".join(release.split(".")[:2])
8080

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pysnmp"
3-
version = "7.1.24"
3+
version = "7.1.25"
44
description = "A Python library for SNMP"
55
authors = [
66
{name = "Ilya Etingof", email = "etingof@gmail.com"},

pysnmp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414
# http://www.python.org/dev/peps/pep-0396/
15-
__version__ = "7.1.24"
15+
__version__ = "7.1.25"
1616
# another variable is required to prevent semantic release from updating version in more than one place
1717
main_version = __version__
1818
# backward compatibility

0 commit comments

Comments
 (0)