Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Jan 7, 2023
1 parent 4424aa5 commit d8db08a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.4.0-rc.1 (2023-01-06)
## 0.4.0 (2023-01-06)
- Reorder commands in help output to show the most useful commands first
- Add TOTP token support for handling two factor authentication codes
- Add support for Steam TOTP tokens
Expand All @@ -10,22 +10,26 @@
- Add `totp qr` command to show a TOTP QR code for adding to another authenticator
- Add `slam` command to aggressively close the password store, Tomb, opened GPG
keys and persistent SSH connections in case of an emergency
- Move `--store` property to root of `prs`, making it globally usable
- For the `generate` command, add `--stdout` alias for `--show`
- Automatically open Tomb when using `sync` command
- Make hints shown with `prs` Tomb aware, preventing weird suggestions when a
Tomb is closed
- Show warning when using `git` command if sync is not initialised
- Fix Tomb's not closing due to persistent SSH connections, these connections
are now dropped automatically
- Make interactive selection through skim full screen
- Fix password generator panicing on very short/long lengths
- Improve various error messages making them more descriptive
- Use GnuPG binary backend by default now, rather than GPGME
- Improve GNU and musl CI builds
- Fix errors and warnings for Windows builds
- Remove macOS builds from releases, users can compile from source
- Don't publish release candidate releases on Arch AUR
- Remove unsafe code for handling UTF-16 output
- Remove unsafe code for signalling SSH processes
- Disable unused features in dependencies to shrink dependency count
- Update command-line interface handling system
- Disable unused features in dependencies to shrink dependency count
- Update MSRV to 1.64
- Update dependencies

Expand Down
10 changes: 5 additions & 5 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 @@ -681,7 +681,7 @@ See a list of compatible `pass` clients [here][pass-compatible-clients].
```
$ prs help
prs-cli 0.4.0-rc.1
prs-cli 0.4.0
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.4.0-rc.1"
version = "0.4.0"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -70,7 +70,7 @@ derive_builder = "0.12.0"
edit = "0.1.4"
lazy_static = "1.4.0"
libc = "0.2.139"
prs-lib = { version = "0.4.0-rc.1", path = "../lib", default-features = false }
prs-lib = { version = "0.4.0", path = "../lib", default-features = false }
rand = { version = "0.8.5", default-features = false, features = ["std"] }
text_trees = "0.1.2"
thiserror = "1.0.38"
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.4.0-rc.1"
version = "0.4.0"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
Expand Down Expand Up @@ -40,7 +40,7 @@ gdk = "0.16.2"
gio = { version = "0.16.7", features = ["v2_58"] }
glib = "0.16.7"
gtk = { version = "0.16.2", features = ["v3_24"] }
prs-lib = { version = "0.4.0-rc.1", path = "../lib", default-features = false }
prs-lib = { version = "0.4.0", path = "../lib", default-features = false }
thiserror = "1.0.38"

# 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.4.0-rc.1"
version = "0.4.0"
authors = ["Tim Visee <[email protected]>"]
license = "LGPL-3.0"
readme = "../README.md"
Expand Down

0 comments on commit d8db08a

Please sign in to comment.