summaryrefslogtreecommitdiff
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
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
-rw-r--r--_doc/CHANGELOG.adoc25
-rw-r--r--gotp.go2
2 files changed, 26 insertions, 1 deletions
diff --git a/_doc/CHANGELOG.adoc b/_doc/CHANGELOG.adoc
index ab11936..2729e69 100644
--- a/_doc/CHANGELOG.adoc
+++ b/_doc/CHANGELOG.adoc
@@ -6,6 +6,31 @@ Shulhan <ms@kilabit.info>
:sectanchors:
:sectlinks:
+[#v0_4_0]
+== gotp v0.4.0 (2023-11-11)
+
+[#v0_4_0__new_features]
+=== New features
+
+all: implement command "get"::
++
+The "get" command get and print the issuer by its LABEL.
+This will print the issuer secret, unencrypted.
+
+[#v0_4_0__enhancements]
+=== 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::
+
+
[#v0_3_1]
== gotp v0.3.1 (2023-05-25)
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 `-`.