Skip to content

Commit c4d494f

Browse files
authored
41.0.0 version bump (#8991)
* 41.0.0 version bump * bust cache since we don't currently compute cache key including version
1 parent 8708245 commit c4d494f

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.github/actions/cache/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
~/.cargo/registry/cache/
4848
src/rust/target/
4949
${{ inputs.additional-paths }}
50-
key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ steps.normalized-key.outputs.key }}-5-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }}
50+
key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ steps.normalized-key.outputs.key }}-6-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }}
5151
- name: Size of cache items
5252
run: |
5353
du -sh ~/.cargo/registry/index/

CHANGELOG.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ Changelog
33

44
.. _v41-0-0:
55

6-
41.0.0 - `main`_
7-
~~~~~~~~~~~~~~~~
8-
9-
.. note:: This version is not yet released and is under active development.
6+
41.0.0 - 2023-05-30
7+
~~~~~~~~~~~~~~~~~~~
108

119
* **BACKWARDS INCOMPATIBLE:** Support for OpenSSL less than 1.1.1d has been
1210
removed. Users on older version of OpenSSL will need to upgrade.
1311
* **BACKWARDS INCOMPATIBLE:** Support for Python 3.6 has been removed.
1412
* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.6.
1513
* Updated the minimum supported Rust version (MSRV) to 1.56.0, from 1.48.0.
14+
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.1.
1615
* Added support for the :class:`~cryptography.x509.OCSPAcceptableResponses`
1716
OCSP extension.
1817
* Added support for the :class:`~cryptography.x509.MSCertificateTemplate`

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111

1212
[project]
1313
name = "cryptography"
14-
version = "41.0.0.dev1"
14+
version = "41.0.0"
1515
authors = [
1616
{name = "The Python Cryptographic Authority and individual contributors", email = "[email protected]"}
1717
]

src/cryptography/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"__copyright__",
1111
]
1212

13-
__version__ = "41.0.0.dev1"
13+
__version__ = "41.0.0"
1414

1515

1616
__author__ = "The Python Cryptographic Authority and individual contributors"

vectors/cryptography_vectors/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"__version__",
77
]
88

9-
__version__ = "41.0.0.dev1"
9+
__version__ = "41.0.0"

vectors/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cryptography_vectors"
7-
version = "41.0.0.dev1"
7+
version = "41.0.0"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "[email protected]"}
1010
]

0 commit comments

Comments
 (0)