From 6a8036f6362edcc13e0af343270b87c29efbe1b6 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 18 Jul 2023 02:16:03 -0400 Subject: changelog and version bump --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aebb270..8f7896b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.8.0] - 2023-07-18 + +### Added + +* `rbw get --clipboard` to copy the result to the clipboard instead of + displaying it on stdout. (eatradish, #120) +* Background syncing now additionally happens when the server notifies the + agent of password updates, instead of needing to wait for the + `sync_interval` timer. (Bernd Schoolman, #115) +* New helper script `rbw-pinentry-keyring` which can be used as an alternate + pinentry program (via `rbw config set pinentry rbw-pinentry-keyring`) to + automatically read the master password from the system keyring. Currently + only supports the Gnome keyring via `secret-tool`. (Kai Frische, #122) +* Yubikeys in OTP mode are now supported for logging into a Bitwarden server. + (troyready, #123) + +### Fixed + +* Better error reporting when `rbw login` or `rbw register` fail. + ## [1.7.1] - 2023-03-27 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 68c46cb..6b63d53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1289,7 +1289,7 @@ dependencies = [ [[package]] name = "rbw" -version = "1.7.1" +version = "1.8.0" dependencies = [ "aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index e16395f..65e349d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbw" -version = "1.7.1" +version = "1.8.0" authors = ["Jesse Luehrs "] edition = "2021" -- cgit v1.2.3-54-g00ecf