Skip to content

Commit b22271c

Browse files
reaperhulkalex
andauthored
bump for 41.0.3 (#9330)
* bump for 41.0.3 * bump openssl versions in CI * version bumps do not work that way * Rebuild cffi module if version changes (#9011) --------- Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
1 parent 774a4a1 commit b22271c

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ jobs:
2828
PYTHON:
2929
- {VERSION: "3.11", NOXSESSION: "flake"}
3030
- {VERSION: "3.11", NOXSESSION: "rust"}
31-
- {VERSION: "3.11", NOXSESSION: "docs", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1"}}
31+
- {VERSION: "3.11", NOXSESSION: "docs", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2"}}
3232
- {VERSION: "pypy-3.8", NOXSESSION: "tests-nocoverage"}
3333
- {VERSION: "pypy-3.9", NOXSESSION: "tests-nocoverage"}
3434
- {VERSION: "pypy-3.10", NOXSESSION: "tests-nocoverage"}
35-
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "1.1.1u"}}
36-
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.0.9"}}
37-
- {VERSION: "3.11", NOXSESSION: "tests-ssh", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1"}}
38-
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1", CONFIG_FLAGS: "no-engine no-rc2 no-srtp no-ct no-psk"}}
39-
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.1", CONFIG_FLAGS: "no-legacy", NO_LEGACY: "1"}}
40-
- {VERSION: "3.11", NOXSESSION: "tests", NOXARGS: "--enable-fips=1", OPENSSL: {TYPE: "openssl", CONFIG_FLAGS: "enable-fips", VERSION: "3.1.1"}}
35+
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "1.1.1v"}}
36+
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.0.10"}}
37+
- {VERSION: "3.11", NOXSESSION: "tests-ssh", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2"}}
38+
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2", CONFIG_FLAGS: "no-engine no-rc2 no-srtp no-ct no-psk"}}
39+
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "openssl", VERSION: "3.1.2", CONFIG_FLAGS: "no-legacy", NO_LEGACY: "1"}}
40+
- {VERSION: "3.11", NOXSESSION: "tests", NOXARGS: "--enable-fips=1", OPENSSL: {TYPE: "openssl", CONFIG_FLAGS: "enable-fips", VERSION: "3.1.2"}}
4141
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.6.3"}}
4242
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.7.3"}}
4343
- {VERSION: "3.11", NOXSESSION: "tests", OPENSSL: {TYPE: "libressl", VERSION: "3.8.0"}}

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.2"
14+
version = "41.0.3"
1515
authors = [
1616
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
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.2"
13+
__version__ = "41.0.3"
1414

1515

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

src/rust/cryptography-cffi/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ fn main() {
2727
let python = env::var("PYO3_PYTHON").unwrap_or_else(|_| "python3".to_string());
2828
println!("cargo:rerun-if-env-changed=PYO3_PYTHON");
2929
println!("cargo:rerun-if-changed=../../_cffi_src/");
30+
println!("cargo:rerun-if-changed=../../cryptography/__about__.py");
3031
let output = Command::new(&python)
3132
.env("OUT_DIR", &out_dir)
3233
.arg("../../_cffi_src/build_openssl.py")

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.2"
9+
__version__ = "41.0.3"

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.2"
7+
version = "41.0.3"
88
authors = [
99
{name = "The Python Cryptographic Authority and individual contributors", email = "cryptography-dev@python.org"}
1010
]

0 commit comments

Comments
 (0)