Skip to content

Commit

Permalink
Bump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Mar 17, 2024
1 parent ae085a2 commit b0d7c2f
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.5.1 (2024-03-17)
- Add `--pager` alias for `--viewer`
- Add `PRS_PAGER` variable to set custom pager as viewer
- Add scroll support to built-in secure viewer
- Enforce use of TTY when using built-in secure viewer
- Fix errors when `.gpg-id` contains comments
- Fix prs not using existing remote on git repository
- Fix current git branch not using newly configured remote
- Fix auto completion of secrets for bash
- Fix panic on `internal completions` command
- Update dependencies

## 0.5.0 (2023-01-19)
- Add `prs` homebrew package for macOS
- Add `sync status` command to show sync status, changed files and sync command
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ See a list of compatible `pass` clients [here][pass-compatible-clients].
```
$ prs help
prs 0.5.0
prs 0.5.1
Tim Visee <[email protected]>
Secure, fast & convenient password manager CLI with GPG & git sync
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prs-cli"
version = "0.5.0"
version = "0.5.1"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -72,7 +72,7 @@ derive_builder = "0.20"
edit = "0.1"
indicatif = "0.17"
lazy_static = "1.4"
prs-lib = { version = "=0.5.0", path = "../lib", default-features = false }
prs-lib = { version = "=0.5.1", 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"
Expand Down
4 changes: 2 additions & 2 deletions gtk3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prs-gtk3"
version = "0.5.0"
version = "0.5.1"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -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.0", path = "../lib", default-features = false }
prs-lib = { version = "=0.5.1", path = "../lib", default-features = false }
thiserror = "1.0"

# Notification support
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prs-lib"
version = "0.5.0"
version = "0.5.1"
authors = ["Tim Visee <[email protected]>"]
license = "LGPL-3.0"
readme = "../README.md"
Expand Down

0 comments on commit b0d7c2f

Please sign in to comment.