aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-05-22 01:34:24 -0400
committerJesse Luehrs <doy@tozt.net>2020-05-22 01:34:24 -0400
commit09798d505b8630e8eb01fef6bca0acf6a0296d92 (patch)
tree3fad18b92c21ed52e9b587aa90945ca83976a100
parent2f5bef2ccdf62316997e4369aca40bb5f9419b20 (diff)
downloadrbw-09798d505b8630e8eb01fef6bca0acf6a0296d92.tar.gz
rbw-09798d505b8630e8eb01fef6bca0acf6a0296d92.zip
changelog and version bump0.3.0
-rw-r--r--CHANGELOG.md12
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e957e4f..3d67434 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [0.3.0] - 2020-05-22
+
+### Fixed
+
+* Better error message if the agent fails to start after daemonizing.
+* Always automatically upgrade rbw-agent on new releases.
+* Changing configuration now automatically drops in-memory keys (this should
+ avoid errors when switching between different servers or accounts).
+* Disallow setting `lock_timeout` to `0`, since this will cause the agent to
+ immediately drop the decrypted keys before they can be used for decryption,
+ even within a single run of the `rbw` client.
+
## [0.2.2] - 2020-05-17
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 9dc1094..4d507a5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1093,7 +1093,7 @@ dependencies = [
[[package]]
name = "rbw"
-version = "0.2.2"
+version = "0.3.0"
dependencies = [
"aes",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index b281ba2..b6572f1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rbw"
-version = "0.2.2"
+version = "0.3.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"