Skip to content

Commit

Permalink
Prepare for 25.0.0 release (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored Jan 12, 2025
1 parent 2d6299b commit 787f176
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ Changelog
Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.

25.0.0 (2025-01-12)
-------------------

Backward-incompatible changes:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Deprecations:
^^^^^^^^^^^^^

Changes:
^^^^^^^^

- 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``.
- Deprecated APIs are now marked using ``warnings.deprecated``. ``mypy`` will emit deprecation notices for them when used with ``--enable-error-code deprecated``.

24.3.0 (2024-11-27)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions src/OpenSSL/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"__version__",
]

__version__ = "24.3.0"
__version__ = "25.0.0"

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

0 comments on commit 787f176

Please sign in to comment.