From a7733878281ca261c4ada04022fc706ba5de9d8b Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Tue, 3 Sep 2024 12:45:08 -0700 Subject: [PATCH] bump for 43.0.1 (#11533) * bump for 43.0.1 * deny another setuptools version --- CHANGELOG.rst | 7 +++++++ pyproject.toml | 6 +++--- src/cryptography/__about__.py | 2 +- vectors/cryptography_vectors/__about__.py | 2 +- vectors/pyproject.toml | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1dcf602eebf8..bb9043108185 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +.. _v43-0-1: + +43.0.1 - 2024-09-03 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.2. + .. _v43-0-0: 43.0.0 - 2024-07-20 diff --git a/pyproject.toml b/pyproject.toml index d023c52ad13a..e5b801df72c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,13 +8,13 @@ requires = [ "cffi>=1.12; platform_python_implementation != 'PyPy'", # Needed because cffi imports distutils, and in Python 3.12, distutils has # been removed from the stdlib, but installing setuptools puts it back. - "setuptools!=74.0.0,!=74.1.0", + "setuptools!=74.0.0,!=74.1.0,!=74.1.1", ] build-backend = "maturin" [project] name = "cryptography" -version = "43.0.0" +version = "43.0.1" 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==43.0.0", + "cryptography_vectors==43.0.1", "pytest >=6.2.0", "pytest-benchmark", "pytest-cov", diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 4362aed1edfa..d224b2fc6f24 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -10,7 +10,7 @@ "__version__", ] -__version__ = "43.0.0" +__version__ = "43.0.1" __author__ = "The Python Cryptographic Authority and individual contributors" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index 8115d70aaaa8..fb1bc4d96169 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ "__version__", ] -__version__ = "43.0.0" +__version__ = "43.0.1" diff --git a/vectors/pyproject.toml b/vectors/pyproject.toml index c2ae77d2c684..23f52fcadba4 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" +version = "43.0.1" authors = [ {name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"} ]