summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 `-`.