Skip to content

Commit 1a7f6cd

Browse files
committed
Bumped the version.
1 parent 7be100d commit 1a7f6cd

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Revision 7.1.15, released on Dec 05, 2024
2+
-----------------------------------------
3+
4+
- Improved shadow cloning patch.
5+
- Fixed v1arch local address issue.
6+
17
Revision 7.1.14, released on Dec 03, 2024
28
-----------------------------------------
39

SECURITY.md

+1-1
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.14 | TBD | EOL to be determined |
9+
| 7.1 | 7.1.15 | TBD | EOL to be determined |
1010
| 7.0 | 7.0.4 | 2025-03-11 | Supported for 6 months after 7.1.0 |
1111
| 6.2 | 6.2.6 | 2025-08-22 | Supported for 1 year after 7.0.0 |
1212
| 6.1 | 6.1.4 | 2025-01-12 | Supported for 6 months after 6.2.0 |

docs/source/conf.py

+1-1
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.14"
77+
release = "7.1.15"
7878
# The short X.Y version.
7979
version = ".".join(release.split(".")[:2])
8080

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysnmp"
3-
version = "7.1.14"
3+
version = "7.1.15"
44
description = "A Python library for SNMP"
55
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
66
license = "BSD-2-Clause"

pysnmp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- For backward compatibility, if the version string contains "beta", the string part is removed before converting to a tuple.
1212
"""
1313
# http://www.python.org/dev/peps/pep-0396/
14-
__version__ = "7.1.14"
14+
__version__ = "7.1.15"
1515
# another variable is required to prevent semantic release from updating version in more than one place
1616
main_version = __version__
1717
# backward compatibility

0 commit comments

Comments
 (0)