diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0c51fc2c15ce..f5e8413b9463 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +.. _v37-0-1: + +37.0.1 - 2022-04-27 +~~~~~~~~~~~~~~~~~~~ + +* Fixed an issue where parsing an encrypted private key with the public + loader functions would hang waiting for console input on OpenSSL 3.0.x rather + than raising an error. +* Restored some legacy symbols for older ``pyOpenSSL`` users. These will be + removed again in the future, so ``pyOpenSSL`` users should still upgrade + to the latest version of that package when they upgrade ``cryptography``. + .. _v37-0-0: 37.0.0 - 2022-04-26 diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 7158b6a2f9ec..13b6cc594fc3 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -9,7 +9,7 @@ "__copyright__", ] -__version__ = "37.0.0" +__version__ = "37.0.1" __author__ = "The Python Cryptographic Authority and individual contributors" __copyright__ = "Copyright 2013-2021 {}".format(__author__) diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index 6cd22fc2ae8e..bd3d314b85fe 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ "__version__", ] -__version__ = "37.0.0" +__version__ = "37.0.1"