diff --git a/CHANGELOG.md b/CHANGELOG.md index a278127..aebb270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.7.1] - 2023-03-27 + +### Fixed + +* argon2 actually works now (#113, Bernd Schoolmann) + ## [1.7.0] - 2023-03-25 ### Added @@ -8,6 +14,7 @@ interval while it is running. This defaults to once an hour, but is configurable via the `sync_interval` option * Email 2FA is now supported (#111, René 'Necoro' Neumann) +* argon2 KDF is now supported (#109, Bernd Schoolmann) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index c129c4f..1d8112b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1014,7 +1014,7 @@ dependencies = [ [[package]] name = "rbw" -version = "1.7.0" +version = "1.7.1" dependencies = [ "aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 7ee5579..778e9d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbw" -version = "1.7.0" +version = "1.7.1" authors = ["Jesse Luehrs "] edition = "2021"