diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2022-07-05 09:14:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-05 13:14:51 +0000 |
| commit | 7ad17d819affb996c6681c6aac57e43184c54865 (patch) | |
| tree | 3dd42058b5358409a17d9ecb64b4983c7821612c | |
| parent | b71c39202ba2d7dfb7a89215e04946e7fbf92896 (diff) | |
| download | cryptography-37.0.x.tar.gz | |
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/wheel-builder.yml | 3 | ||||
| -rw-r--r-- | CHANGELOG.rst | 7 | ||||
| -rw-r--r-- | src/cryptography/__about__.py | 2 | ||||
| -rw-r--r-- | tox.ini | 5 | ||||
| -rw-r--r-- | vectors/cryptography_vectors/__about__.py | 2 |
6 files changed, 16 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc90a2f7c..9dee594a3 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 fff1af324..232836d72 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 d52a0ee41..617560d12 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 b581d90b6..399beb668 100644 --- a/src/cryptography/__about__.py +++ b/src/cryptography/__about__.py @@ -9,7 +9,7 @@ __all__ = [ "__copyright__", ] -__version__ = "37.0.3" +__version__ = "37.0.4" __author__ = "The Python Cryptographic Authority and individual contributors" __copyright__ = "Copyright 2013-2022 {}".format(__author__) @@ -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 5af72d578..280a0dd62 100644 --- a/vectors/cryptography_vectors/__about__.py +++ b/vectors/cryptography_vectors/__about__.py @@ -6,4 +6,4 @@ __all__ = [ "__version__", ] -__version__ = "37.0.3" +__version__ = "37.0.4" |
