diff options
| -rw-r--r-- | .github/workflows/download_openssl.py | 2 | ||||
| -rw-r--r-- | CHANGELOG.rst | 8 | ||||
| -rw-r--r-- | src/cryptography/__about__.py | 2 | ||||
| -rw-r--r-- | vectors/cryptography_vectors/__about__.py | 2 |
4 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/download_openssl.py b/.github/workflows/download_openssl.py index 46b3b7f0e..496e05385 100644 --- a/.github/workflows/download_openssl.py +++ b/.github/workflows/download_openssl.py @@ -51,7 +51,7 @@ def main(platform, target): print("Looking for: {}".format(target)) runs_url = ( "https://api.github.com/repos/pyca/infra/actions/workflows/" - "{}/runs?branch=master&status=success".format(workflow) + "{}/runs?branch=main&status=success".format(workflow) ) response = get_response(session, runs_url, token).json() diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aa3d738b5..6732b35a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +.. _v3-4-6: + +3.4.6 - 2021-02-16 +~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and ``manylinux`` wheels to be compiled with + OpenSSL 1.1.1j. + .. _v3-4-5: 3.4.5 - 2021-02-13 diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index 385d21957..06f69946f 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -21,7 +21,7 @@ __summary__ = ( ) __uri__ = "https://github.com/pyca/cryptography" -__version__ = "3.4.5" +__version__ = "3.4.6" __author__ = "The Python Cryptographic Authority and individual contributors" __email__ = "cryptography-dev@python.org" diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index c352b80f1..eff8d8e21 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -18,7 +18,7 @@ __summary__ = "Test vectors for the cryptography package." __uri__ = "https://github.com/pyca/cryptography" -__version__ = "3.4.5" +__version__ = "3.4.6" __author__ = "The Python Cryptographic Authority and individual contributors" __email__ = "cryptography-dev@python.org" |
