Skip to content

Commit 439eb05

Browse files
authored
Bump version for 44.0.0 (#12051)
1 parent 2c5ad4d commit 439eb05

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

CHANGELOG.rst

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ Changelog
33

44
.. _v44-0-0:
55

6-
44.0.0 - `main`_
7-
~~~~~~~~~~~~~~~~
8-
9-
.. note:: This version is not yet released and is under active development.
10-
6+
44.0.0 - 2024-11-27
7+
~~~~~~~~~~~~~~~~~~~
118

129
* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.9.
1310
* Deprecated Python 3.7 support. Python 3.7 is no longer supported by the
1411
Python core team. Support for Python 3.7 will be removed in a future
1512
``cryptography`` release.
13+
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.4.0.
1614
* macOS wheels are now built against the macOS 10.13 SDK. Users on older
1715
versions of macOS should upgrade, or they will need to build
1816
``cryptography`` themselves.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build-backend = "maturin"
1414

1515
[project]
1616
name = "cryptography"
17-
version = "44.0.0.dev1"
17+
version = "44.0.0"
1818
authors = [
1919
{name = "The Python Cryptographic Authority and individual contributors", email = "[email protected]"}
2020
]
@@ -65,7 +65,7 @@ ssh = ["bcrypt >=3.1.5"]
6565
# All the following are used for our own testing.
6666
nox = ["nox >=2024.04.15", "nox[uv] >=2024.03.02; python_version >= '3.8'"]
6767
test = [
68-
"cryptography_vectors",
68+
"cryptography_vectors==44.0.0",
6969
"pytest >=7.4.0",
7070
"pytest-benchmark >=4.0",
7171
"pytest-cov >=2.10.1",

src/cryptography/__about__.py

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

13-
__version__ = "44.0.0.dev1"
13+
__version__ = "44.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__ = "44.0.0.dev1"
9+
__version__ = "44.0.0"

vectors/pyproject.toml

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

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

0 commit comments

Comments
 (0)