diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2ba14..6e4bf88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.5.2 (2024-11-09) +- Autocomplete secret names in zsh +- Update dependencies + ## 0.5.1 (2024-03-17) - Add `--pager` alias for `--viewer` - Add `PRS_PAGER` variable to set custom pager as viewer diff --git a/Cargo.lock b/Cargo.lock index 15bbd5a..c2565ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2277,7 +2277,7 @@ dependencies = [ [[package]] name = "prs-cli" -version = "0.5.1" +version = "0.5.2" dependencies = [ "ansi-escapes", "anyhow", @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "prs-gtk3" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anyhow", "gdk", @@ -2329,7 +2329,7 @@ dependencies = [ [[package]] name = "prs-lib" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anyhow", "fs_extra", diff --git a/README.md b/README.md index 0ef39ba..96627e5 100644 --- a/README.md +++ b/README.md @@ -693,7 +693,7 @@ See a list of compatible `pass` clients [here][pass-compatible-clients]. ``` $ prs help -prs 0.5.1 +prs 0.5.2 Tim Visee <3a4fb3964f@sinenomine.email> Secure, fast & convenient password manager CLI with GPG & git sync diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 32c6a20..aee7d9f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prs-cli" -version = "0.5.1" +version = "0.5.2" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "../README.md" @@ -72,7 +72,7 @@ derive_builder = "0.20" edit = "0.1" indicatif = "0.17" lazy_static = "1.4" -prs-lib = { version = "=0.5.1", path = "../lib", default-features = false } +prs-lib = { version = "=0.5.2", path = "../lib", default-features = false } rand = { version = "0.8", default-features = false, features = ["std"] } regex = { version = "1.7", default-features = false, features = ["std", "unicode-perl"] } shellexpand = "3.0" diff --git a/gtk3/Cargo.toml b/gtk3/Cargo.toml index b4b8f68..3024515 100644 --- a/gtk3/Cargo.toml +++ b/gtk3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prs-gtk3" -version = "0.5.1" +version = "0.5.2" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "../README.md" @@ -41,7 +41,7 @@ gdk = "0.18" gio = { version = "0.18", features = ["v2_72"] } glib = "0.18" gtk = { version = "0.18", features = ["v3_24"] } -prs-lib = { version = "=0.5.1", path = "../lib", default-features = false } +prs-lib = { version = "=0.5.2", path = "../lib", default-features = false } thiserror = "2.0" # Notification support diff --git a/lib/Cargo.toml b/lib/Cargo.toml index ab13c3f..cb233ce 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prs-lib" -version = "0.5.1" +version = "0.5.2" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "LGPL-3.0" readme = "../README.md"