diff options
| author | Shulhan <ms@kilabit.info> | 2024-02-08 22:17:47 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-02-08 22:17:47 +0700 |
| commit | ccb8ba05b202dcca0628f8bec86654916c233b14 (patch) | |
| tree | 5b63ab2a5af79d03d8ec2b62687f0af5408b33ee /gotp.go | |
| parent | 76fe42757f82837466e82327d4af277f6a82eeff (diff) | |
| download | gotp-0.5.0.tar.xz | |
Release gotp v0.5.0 (2024-02-08)v0.5.0
=== Breaking changes
* all: make the path to private key static
Instead of prompting user, make the private key static, located at
"$XDG_CONFIG_DIR/gotp/gotp.key".
If the key exist, the issuer will be encrypted.
=== Enhancements
* all: ask for passphrase when removing or renaming label
Even though "rename" command does not read the encrypted secret, as long
as the private key is in use, it should ask for passphrase.
The remove operation allow only the one that know the private key can
modify the issuer.
* _sys: fix the bash completion installation directory
In POSIX system, the correct installation for bash completion script
should be /usr/share/bash-completion not under /etc directory.
Diffstat (limited to 'gotp.go')
| -rw-r--r-- | gotp.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ const ( ) // Version define the latest version of this module and gotp CLI. -var Version = `0.4.0` +var Version = `0.5.0` // termrw define terminal for reading passphrase. // It is defined to mock parameter termrw in |
