Skip to content

Commit fe18470

Browse files
authored
Bump for 42.0.4 release (#10445)
1 parent aaa2dd0 commit fe18470

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.rst

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Changelog
66
42.0.4 - 2024-02-20
77
~~~~~~~~~~~~~~~~~~~
88

9+
* Fixed a null-pointer-dereference and segfault that could occur when creating
10+
a PKCS#12 bundle. Credit to **Alexander-Programming** for reporting the
11+
issue. **CVE-2024-26130**
912
* Fixed ASN.1 encoding for PKCS7/SMIME signed messages. The fields ``SMIMECapabilities``
1013
and ``SignatureAlgorithmIdentifier`` should now be correctly encoded according to the
1114
definitions in :rfc:`2633` :rfc:`3370`.

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.3"
15+
version = "42.0.4"
1616
authors = [
1717
{name = "The Python Cryptographic Authority and individual contributors", email = "[email protected]"}
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.3"
13+
__version__ = "42.0.4"
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.3"
9+
__version__ = "42.0.4"

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.3"
7+
version = "42.0.4"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "[email protected]"}
1010
]

0 commit comments

Comments
 (0)