diff options
| -rw-r--r-- | CHANGELOG.rst | 8 | ||||
| -rw-r--r-- | src/cryptography/__about__.py | 2 | ||||
| -rw-r--r-- | vectors/cryptography_vectors/__about__.py | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5e8413b9..7b66e4c4b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +.. _v37-0-2: + +37.0.2 - 2022-05-03 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.0.3. +* Added a constant needed for an upcoming pyOpenSSL release. + .. _v37-0-1: 37.0.1 - 2022-04-27 diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 13b6cc594..5bf8b6669 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -9,7 +9,7 @@ __all__ = [ "__copyright__", ] -__version__ = "37.0.1" +__version__ = "37.0.2" __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 bd3d314b8..de175e38d 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ __all__ = [ "__version__", ] -__version__ = "37.0.1" +__version__ = "37.0.2" |
