Skip to content

Commit 35e5a6f

Browse files
authored
Bump version for 4.1.3 release (pyca#791)
1 parent d99d1e5 commit 35e5a6f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ While bcrypt remains an acceptable choice for password storage, depending on you
5151
Changelog
5252
=========
5353

54+
4.1.3
55+
-----
56+
57+
* Bump Rust dependency versions
58+
5459
4.1.2
5560
-----
5661

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
1212
[project]
1313
name = "bcrypt"
1414
# When updating this, also update lib.rs
15-
version = "4.1.2"
15+
version = "4.1.3"
1616
authors = [
1717
{name = "The Python Cryptographic Authority developers", email = "[email protected]"}
1818
]

src/_bcrypt/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,14 @@ fn _bcrypt(
196196
// When updating this, also update pyproject.toml
197197
// This isn't named __version__ because passlib treats the existence of
198198
// that attribute as proof that we're a different module
199-
m.add("__version_ex__", "4.1.2")?;
199+
m.add("__version_ex__", "4.1.3")?;
200200

201201
let author = "The Python Cryptographic Authority developers";
202202
m.add("__author__", author)?;
203203
m.add("__email__", "[email protected]")?;
204204

205205
m.add("__license__", "Apache License, Version 2.0")?;
206-
m.add("__copyright__", format!("Copyright 2013-2023 {author}"))?;
206+
m.add("__copyright__", format!("Copyright 2013-2024 {author}"))?;
207207

208208
Ok(())
209209
}

0 commit comments

Comments
 (0)