Skip to content

Commit

Permalink
41.0.0 version bump (#8991)
Browse files Browse the repository at this point in the history
* 41.0.0 version bump

* bust cache since we don't currently compute cache key including version
  • Loading branch information
reaperhulk committed May 30, 2023
1 parent 8708245 commit c4d494f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cache/action.yml
Expand Up @@ -47,7 +47,7 @@ runs:
~/.cargo/registry/cache/
src/rust/target/
${{ inputs.additional-paths }}
key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ steps.normalized-key.outputs.key }}-5-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }}
key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ steps.normalized-key.outputs.key }}-6-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }}
- name: Size of cache items
run: |
du -sh ~/.cargo/registry/index/
Expand Down
7 changes: 3 additions & 4 deletions CHANGELOG.rst
Expand Up @@ -3,16 +3,15 @@ Changelog

.. _v41-0-0:

41.0.0 - `main`_
~~~~~~~~~~~~~~~~

.. note:: This version is not yet released and is under active development.
41.0.0 - 2023-05-30
~~~~~~~~~~~~~~~~~~~

* **BACKWARDS INCOMPATIBLE:** Support for OpenSSL less than 1.1.1d has been
removed. Users on older version of OpenSSL will need to upgrade.
* **BACKWARDS INCOMPATIBLE:** Support for Python 3.6 has been removed.
* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.6.
* Updated the minimum supported Rust version (MSRV) to 1.56.0, from 1.48.0.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.1.
* Added support for the :class:`~cryptography.x509.OCSPAcceptableResponses`
OCSP extension.
* Added support for the :class:`~cryptography.x509.MSCertificateTemplate`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cryptography"
version = "41.0.0.dev1"
version = "41.0.0"
authors = [
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
]
Expand Down
2 changes: 1 addition & 1 deletion src/cryptography/__about__.py
Expand Up @@ -10,7 +10,7 @@
"__copyright__",
]

__version__ = "41.0.0.dev1"
__version__ = "41.0.0"


__author__ = "The Python Cryptographic Authority and individual contributors"
Expand Down
2 changes: 1 addition & 1 deletion vectors/cryptography_vectors/__about__.py
Expand Up @@ -6,4 +6,4 @@
"__version__",
]

__version__ = "41.0.0.dev1"
__version__ = "41.0.0"
2 changes: 1 addition & 1 deletion vectors/pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cryptography_vectors"
version = "41.0.0.dev1"
version = "41.0.0"
authors = [
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
]
Expand Down

0 comments on commit c4d494f

Please sign in to comment.