Bump version for 4.1.3 release (#791)
This commit is contained in:
parent
d99d1e568d
commit
35e5a6f5a5
@ -51,6 +51,11 @@ While bcrypt remains an acceptable choice for password storage, depending on you
|
||||
Changelog
|
||||
=========
|
||||
|
||||
4.1.3
|
||||
-----
|
||||
|
||||
* Bump Rust dependency versions
|
||||
|
||||
4.1.2
|
||||
-----
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
|
||||
[project]
|
||||
name = "bcrypt"
|
||||
# When updating this, also update lib.rs
|
||||
version = "4.1.2"
|
||||
version = "4.1.3"
|
||||
authors = [
|
||||
{name = "The Python Cryptographic Authority developers", email = "cryptography-dev@python.org"}
|
||||
]
|
||||
|
||||
@ -196,14 +196,14 @@ fn _bcrypt(
|
||||
// When updating this, also update pyproject.toml
|
||||
// This isn't named __version__ because passlib treats the existence of
|
||||
// that attribute as proof that we're a different module
|
||||
m.add("__version_ex__", "4.1.2")?;
|
||||
m.add("__version_ex__", "4.1.3")?;
|
||||
|
||||
let author = "The Python Cryptographic Authority developers";
|
||||
m.add("__author__", author)?;
|
||||
m.add("__email__", "cryptography-dev@python.org")?;
|
||||
|
||||
m.add("__license__", "Apache License, Version 2.0")?;
|
||||
m.add("__copyright__", format!("Copyright 2013-2023 {author}"))?;
|
||||
m.add("__copyright__", format!("Copyright 2013-2024 {author}"))?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user