Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a773387

Browse files
authoredSep 3, 2024
bump for 43.0.1 (#11533)
* bump for 43.0.1 * deny another setuptools version
1 parent 0393fef commit a773387

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed
 

‎CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
.. _v43-0-1:
5+
6+
43.0.1 - 2024-09-03
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.2.
10+
411
.. _v43-0-0:
512

613
43.0.0 - 2024-07-20

‎pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ requires = [
88
"cffi>=1.12; platform_python_implementation != 'PyPy'",
99
# Needed because cffi imports distutils, and in Python 3.12, distutils has
1010
# been removed from the stdlib, but installing setuptools puts it back.
11-
"setuptools!=74.0.0,!=74.1.0",
11+
"setuptools!=74.0.0,!=74.1.0,!=74.1.1",
1212
]
1313
build-backend = "maturin"
1414

1515
[project]
1616
name = "cryptography"
17-
version = "43.0.0"
17+
version = "43.0.1"
1818
authors = [
1919
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
2020
]
@@ -64,7 +64,7 @@ ssh = ["bcrypt >=3.1.5"]
6464
# All the following are used for our own testing.
6565
nox = ["nox"]
6666
test = [
67-
"cryptography_vectors==43.0.0",
67+
"cryptography_vectors==43.0.1",
6868
"pytest >=6.2.0",
6969
"pytest-benchmark",
7070
"pytest-cov",

‎src/cryptography/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"__version__",
1111
]
1212

13-
__version__ = "43.0.0"
13+
__version__ = "43.0.1"
1414

1515

1616
__author__ = "The Python Cryptographic Authority and individual contributors"

‎vectors/cryptography_vectors/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"__version__",
77
]
88

9-
__version__ = "43.0.0"
9+
__version__ = "43.0.1"

‎vectors/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "cryptography_vectors"
7-
version = "43.0.0"
7+
version = "43.0.1"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]

0 commit comments

Comments
 (0)
Failed to load comments.