From 9ce102af5160cd749342503a9c76e5120c0499d3 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 20 Jul 2024 09:02:49 -0700 Subject: [PATCH] bump for 43.0.0 and update changelog --- CHANGELOG.rst | 10 ++++------ pyproject.toml | 4 ++-- src/cryptography/__about__.py | 2 +- vectors/cryptography_vectors/__about__.py | 2 +- vectors/pyproject.toml | 2 +- 5 files changed, 9 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ea62a5351efdc..cc157e3cfb35a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,14 +3,12 @@ Changelog .. _v43-0-0: -43.0.0 - `main`_ -~~~~~~~~~~~~~~~~ - -.. note:: This version is not yet released and is under active development. +43.0.0 - 2024-07-20 +~~~~~~~~~~~~~~~~~~~ -* **BACKWARDS INCOMPATIBLE:** Support for OpenSSL less than 1.1.1e has been - removed. Users on older version of OpenSSL will need to upgrade. +* **BACKWARDS INCOMPATIBLE:** Support for OpenSSL less than 1.1.1e has been removed. Users on older version of OpenSSL will need to upgrade. * **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.8. +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.1. * Updated the minimum supported Rust version (MSRV) to 1.65.0, from 1.63.0. * :func:`~cryptography.hazmat.primitives.asymmetric.rsa.generate_private_key` now enforces a minimum RSA key size of 1024-bit. Note that 1024-bit is still diff --git a/pyproject.toml b/pyproject.toml index 4cfc675e2556f..5f1bcc75f5112 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ build-backend = "maturin" [project] name = "cryptography" -version = "43.0.0.dev1" +version = "43.0.0" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ] @@ -64,7 +64,7 @@ ssh = ["bcrypt >=3.1.5"] # All the following are used for our own testing. nox = ["nox"] test = [ - "cryptography_vectors", + "cryptography_vectors==43.0.0", "pytest >=6.2.0", "pytest-benchmark", "pytest-cov", diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 0087b1720f0ea..4362aed1edfa8 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -10,7 +10,7 @@ "__version__", ] -__version__ = "43.0.0.dev1" +__version__ = "43.0.0" __author__ = "The Python Cryptographic Authority and individual contributors" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index 4f859faec08c8..8115d70aaaa85 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ "__version__", ] -__version__ = "43.0.0.dev1" +__version__ = "43.0.0" diff --git a/vectors/pyproject.toml b/vectors/pyproject.toml index 99021511a0cd0..c2ae77d2c684a 100644 --- a/vectors/pyproject.toml +++ b/vectors/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "cryptography_vectors" -version = "43.0.0.dev1" +version = "43.0.0" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ]