Skip to content

Commit 2202123

Browse files
authored
changelog and version bump 42.0.2 (#10268)
1 parent f7032bd commit 2202123

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

CHANGELOG.rst

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

4+
.. _v42-0-2:
5+
6+
42.0.2 - 2024-01-30
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.2.1.
10+
* Fixed an issue that prevented the use of Python buffer protocol objects in
11+
``sign`` and ``verify`` methods on asymmetric keys.
12+
* Fixed an issue with incorrect keyword-argument naming with ``EllipticCurvePrivateKey``
13+
:meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.exchange`,
14+
``X25519PrivateKey``
15+
:meth:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PrivateKey.exchange`,
16+
``X448PrivateKey``
17+
:meth:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey.exchange`,
18+
and ``DHPrivateKey``
19+
:meth:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey.exchange`.
20+
421
.. _v42-0-1:
522

623
42.0.1 - 2024-01-24

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
1212

1313
[project]
1414
name = "cryptography"
15-
version = "42.0.1"
15+
version = "42.0.2"
1616
authors = [
1717
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1818
]

src/cryptography/__about__.py

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

13-
__version__ = "42.0.1"
13+
__version__ = "42.0.2"
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__ = "42.0.1"
9+
__version__ = "42.0.2"

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 = "42.0.1"
7+
version = "42.0.2"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]

0 commit comments

Comments
 (0)