Skip to content

Commit

Permalink
Version bump and changelog for 37.0.4 (#7399)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jul 5, 2022
1 parent b71c392 commit 7ad17d8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -259,7 +259,7 @@ jobs:
- {VERSION: "3.10", TOXENV: "py310"}
RUST:
- beta
- nightly
- nightly-2022-06-30
name: "Rust Coverage"
timeout-minutes: 15
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/wheel-builder.yml
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion src/cryptography/__about__.py
Expand Up @@ -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__)
5 changes: 4 additions & 1 deletion tox.ini
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion vectors/cryptography_vectors/__about__.py
Expand Up @@ -6,4 +6,4 @@
"__version__",
]

__version__ = "37.0.3"
__version__ = "37.0.4"

0 comments on commit 7ad17d8

Please sign in to comment.