File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
59634.2.1
6064-----
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111[project ]
1212name = " bcrypt"
1313# When updating this, also update lib.rs
14- version = " 4.2.1 "
14+ version = " 4.3.0 "
1515authors = [
1616 {name = " The Python Cryptographic Authority developers" , email = " cryptography-dev@python.org" }
1717]
Original file line number Diff line number Diff 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__" , "cryptography-dev@python.org" ) ?;
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 }
You can’t perform that action at this time.
0 commit comments