Skip to content

Commit 16ba2ab

Browse files
authored
4.3.0 release (#985)
1 parent 824feec commit 16ba2ab

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ Unreleased
5555
----------
5656

5757
* Dropped support for Python 3.7.
58+
* We now support free-threaded Python 3.13.
59+
* We now support PyPy 3.11.
60+
* We now publish wheels for free-threaded Python 3.13, for PyPy 3.11 on
61+
``manylinux``, and for ARMv7l on ``manylinux``.
5862

5963
4.2.1
6064
-----

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111
[project]
1212
name = "bcrypt"
1313
# When updating this, also update lib.rs
14-
version = "4.2.1"
14+
version = "4.3.0"
1515
authors = [
1616
{name = "The Python Cryptographic Authority developers", email = "[email protected]"}
1717
]

src/_bcrypt/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,14 @@ mod _bcrypt {
202202
// When updating this, also update pyproject.toml
203203
// This isn't named __version__ because passlib treats the existence of
204204
// that attribute as proof that we're a different module
205-
m.add("__version_ex__", "4.2.1")?;
205+
m.add("__version_ex__", "4.3.0")?;
206206

207207
let author = "The Python Cryptographic Authority developers";
208208
m.add("__author__", author)?;
209209
m.add("__email__", "[email protected]")?;
210210

211211
m.add("__license__", "Apache License, Version 2.0")?;
212-
m.add("__copyright__", format!("Copyright 2013-2024 {author}"))?;
212+
m.add("__copyright__", format!("Copyright 2013-2025 {author}"))?;
213213

214214
Ok(())
215215
}

0 commit comments

Comments
 (0)