diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc90a2f7cbf5..9dee594a3523 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -259,7 +259,7 @@ jobs: - {VERSION: "3.10", TOXENV: "py310"} RUST: - beta - - nightly + - nightly-2022-06-30 name: "Rust Coverage" timeout-minutes: 15 steps: diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml index fff1af3246ea..232836d72f17 100644 --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -237,7 +237,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash - - run: python -m pip install -U pip wheel cffi setuptools-rust + - run: python -m pip install -U pip wheel + - run: python -m pip install cffi setuptools-rust - run: python setup.py sdist - run: tar zxvf dist/cryptography*.tar.gz && mkdir wheelhouse shell: bash diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d52a0ee41aac..617560d123fe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +.. _v37-0-4: + +37.0.4 - 2022-07-05 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.0.5. + .. _v37-0-3: 37.0.3 - 2022-06-21 diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py index b581d90b6fe0..399beb6684fe 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -9,7 +9,7 @@ "__copyright__", ] -__version__ = "37.0.3" +__version__ = "37.0.4" __author__ = "The Python Cryptographic Authority and individual contributors" __copyright__ = "Copyright 2013-2022 {}".format(__author__) diff --git a/tox.ini b/tox.ini index 44aa97af3564..1594fec2f007 100644 --- a/tox.ini +++ b/tox.ini @@ -75,7 +75,10 @@ allowlist_externals = cargo commands = cargo fmt --all -- --check - cargo clippy -- -D warnings + # Temporarily allow clippy::drop-non-drop until + # https://github.com/joshua-maros/ouroboros/pull/63 is merged and + # released. + cargo clippy -- -D warnings --allow clippy::drop-non-drop cargo test --no-default-features [flake8] diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py index 5af72d578be5..280a0dd62a25 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ "__version__", ] -__version__ = "37.0.3" +__version__ = "37.0.4"