Skip to content

Commit 41e7788

Browse files
authored
Prepare for a 25.3.0 release (#1448)
1 parent 53b78f5 commit 41e7788

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
Versions are year-based with a strict backward-compatibility policy.
55
The third digit is only for regressions.
66

7-
25.3.0 (UNRELEASED)
7+
25.4.0 (UNRELEASED)
88
-------------------
99

1010
Backward-incompatible changes:
@@ -16,6 +16,20 @@ Deprecations:
1616
Changes:
1717
^^^^^^^^
1818

19+
25.3.0 (2025-09-16)
20+
-------------------
21+
22+
Backward-incompatible changes:
23+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24+
25+
Deprecations:
26+
^^^^^^^^^^^^^
27+
28+
Changes:
29+
^^^^^^^^
30+
31+
- Maximum supported ``cryptography`` version is now 46.x.
32+
1933

2034
25.2.0 (2025-09-14)
2135
-------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def find_meta(meta):
9494
packages=find_packages(where="src"),
9595
package_dir={"": "src"},
9696
install_requires=[
97-
"cryptography>=45.0.7,<46",
97+
"cryptography>=45.0.7,<47",
9898
(
9999
"typing-extensions>=4.9; "
100100
"python_version < '3.13' and python_version >= '3.8'"

src/OpenSSL/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"__version__",
1818
]
1919

20-
__version__ = "25.2.0"
20+
__version__ = "25.3.0"
2121

2222
__title__ = "pyOpenSSL"
2323
__uri__ = "https://pyopenssl.org/"

0 commit comments

Comments
 (0)