Skip to content

Commit

Permalink
Bump version to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Dec 14, 2020
1 parent dba5950 commit 7cfb872
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.1.3 (2020-12-14)
- Add dmenu and rofi quick copy scripts
- Use secure directory to edit secret if possible (such as `/dev/shm`)
- Improve clipboard handling on Windows, do not block console when waiting for
clear timeout.
- Do not try to parse git flags/options passed to `prs git [GIT]` which caused
errors
- Improve security description in README
- Improve various user prompts
- Fix crash when setting clipboard when it was previously empty
- Fix error on macOS when clearing clipboard after timeout
(https://gitlab.com/timvisee/prs/-/issues/8)
- Update dependencies

## 0.1.2 (2020-11-09)

- Fix release automation
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 @@ -294,7 +294,7 @@ See a list of compatible `pass` clients [here][pass-compatible-clients].
```
$ prs help
prs-cli 0.1.2
prs-cli 0.1.3
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.1.2"
version = "0.1.3"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -35,7 +35,7 @@ colored = "2.0"
derive_builder = "0.9"
edit = "0.1"
libc = "0.2"
prs-lib = { version = "0.1.2", path = "../lib" }
prs-lib = { version = "0.1.3", path = "../lib" }
shellexpand = "2.0"
skim = "0.9"
thiserror = "1.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.1.2"
version = "0.1.3"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -30,7 +30,7 @@ gdk = "^0"
gio = { version = "^0", features = ["v2_44"] }
glib = "^0"
gtk = { version = "0.9.0", features = ["v3_16"] }
prs-lib = { version = "0.1.2", path = "../lib" }
prs-lib = { version = "0.1.3", path = "../lib" }
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.1.2"
version = "0.1.3"
authors = ["Tim Visee <[email protected]>"]
license = "LGPL-3.0"
readme = "../README.md"
Expand Down

0 comments on commit 7cfb872

Please sign in to comment.