From ae9e3fca82cb9ae22277f5e50ee9e22eb37251d1 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 25 Oct 2023 21:26:35 -0400 Subject: [PATCH] Bump version for 23.3.0 release --- CHANGELOG.rst | 4 ++-- src/OpenSSL/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71d2f6a99..d50449931 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,7 @@ Changelog Versions are year-based with a strict backward-compatibility policy. The third digit is only for regressions. -23.3.0 (UNRELEASED) +23.3.0 (2023-10-25) ------------------- Backward-incompatible changes: @@ -31,7 +31,7 @@ Changes: ^^^^^^^^ - Changed ``OpenSSL.crypto.X509Store.add_crl`` to also accept - ``cryptography``'s ``X509.CertificateRevocationList`` arguments in addition + ``cryptography``'s ``x509.CertificateRevocationList`` arguments in addition to the now deprecated ``OpenSSL.crypto.CRL`` arguments. - Fixed ``test_set_default_verify_paths`` test so that it is skipped if no network connection is available. diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py index e5cfb04fc..4120cff6d 100644 --- a/src/OpenSSL/version.py +++ b/src/OpenSSL/version.py @@ -17,7 +17,7 @@ "__version__", ] -__version__ = "23.3.0.dev" +__version__ = "23.3.0" __title__ = "pyOpenSSL" __uri__ = "https://pyopenssl.org/"