aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-07-18 02:16:03 -0400
committerJesse Luehrs <doy@tozt.net>2023-07-18 02:16:16 -0400
commit6a8036f6362edcc13e0af343270b87c29efbe1b6 (patch)
treea19c0c9b6f354509feb2cf0597be38ffb75deb8d
parent9fb13ee0ca17c6bfcb50c21e0dbffc93813e2d9d (diff)
downloadrbw-6a8036f6362edcc13e0af343270b87c29efbe1b6.tar.gz
rbw-6a8036f6362edcc13e0af343270b87c29efbe1b6.zip
changelog and version bump
-rw-r--r--CHANGELOG.md20
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
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 <doy@tozt.net>"]
edition = "2021"