Skip to content

Commit 787f176

Browse files
authored
Prepare for 25.0.0 release (#1411)
1 parent 2d6299b commit 787f176

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

Diff for: CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ Changelog
44
Versions are year-based with a strict backward-compatibility policy.
55
The third digit is only for regressions.
66

7+
25.0.0 (2025-01-12)
8+
-------------------
9+
10+
Backward-incompatible changes:
11+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12+
13+
Deprecations:
14+
^^^^^^^^^^^^^
15+
16+
Changes:
17+
^^^^^^^^
18+
19+
- Corrected type annotations on ``Context.set_alpn_select_callback``, ``Context.set_session_cache_mode``, ``Context.set_options``, ``Context.set_mode``, ``X509.subject_name_hash``, and ``X509Store.load_locations``.
20+
- Deprecated APIs are now marked using ``warnings.deprecated``. ``mypy`` will emit deprecation notices for them when used with ``--enable-error-code deprecated``.
21+
722
24.3.0 (2024-11-27)
823
-------------------
924

Diff for: src/OpenSSL/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"__version__",
1818
]
1919

20-
__version__ = "24.3.0"
20+
__version__ = "25.0.0"
2121

2222
__title__ = "pyOpenSSL"
2323
__uri__ = "https://pyopenssl.org/"
2424
__summary__ = "Python wrapper module around the OpenSSL library"
2525
__author__ = "The pyOpenSSL developers"
2626
__email__ = "[email protected]"
2727
__license__ = "Apache License, Version 2.0"
28-
__copyright__ = f"Copyright 2001-2024 {__author__}"
28+
__copyright__ = f"Copyright 2001-2025 {__author__}"

0 commit comments

Comments
 (0)