Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump and changelog for 37.0.4 #7399

Merged
merged 4 commits into from Jul 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"