diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af2fe4..7f6256c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.12.0] - 2024-07-28 + +*NOTE: If you were affected by issue #163 (getting messages like `failed to +decrypt encrypted secret: invalid mac` when doing any operations on your +vault), you will need to `rbw sync` after upgrading in order to update your +local vault with the necessary new data.* + +### Fixed + +* Support decrypting entries encrypted with invididual item encryption keys, + which are now generated by default from the official Bitwarden clients. + (#163) +* Correctly handle lowercased and padded base32 TOTP secrets. (owl, #189) +* Make locking agent memory to RAM optional, since it appears to not always + be available. (#143) + ## [1.11.1] - 2024-06-26 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 32afd31..ce3164e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1452,7 +1452,7 @@ dependencies = [ [[package]] name = "rbw" -version = "1.11.1" +version = "1.12.0" dependencies = [ "aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 51dba75..bc126aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbw" -version = "1.11.1" +version = "1.12.0" authors = ["Jesse Luehrs "] edition = "2021"