summaryrefslogtreecommitdiff
path: root/gotp.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-11-11 00:11:29 +0700
committerShulhan <ms@kilabit.info>2023-11-11 00:11:29 +0700
commit6ae7feb1cc14a8aebc726850ef9def0db5242bc6 (patch)
tree87dee1afb9f384076c4333d0ba82988c9db3ffc7 /gotp.go
parent56213d03be16b368830a159543e89f6b5f7a6817 (diff)
downloadgotp-0.4.0.tar.xz
Release gotp v0.4.0 (2023-11-11)v0.4.0
=== New features * all: implement command "get" The "get" command get and print the issuer by its LABEL. This will print the issuer secret, unencrypted. === Enhancements * all: unfold private key path before reading By unfolding, user can set the path to private key using "~" that points to their home. This make the key can works across home directory, in case user have multiple homes (Linux and macOS have different home path and maybe user name, but both can use "~" as substitution for $HOME) * Makefile: add task to install and uninstall gotp in macOS
Diffstat (limited to 'gotp.go')
-rw-r--r--gotp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gotp.go b/gotp.go
index 2fcbf65..b6e8204 100644
--- a/gotp.go
+++ b/gotp.go
@@ -25,7 +25,7 @@ const (
)
// Version define the latest version of this module and gotp CLI.
-var Version = `0.3.1`
+var Version = `0.4.0`
// normalizeLabel convert non alpha number, hyphen, underscore, or period
// characters into `-`.