From 6ae7feb1cc14a8aebc726850ef9def0db5242bc6 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sat, 11 Nov 2023 00:11:29 +0700 Subject: Release gotp v0.4.0 (2023-11-11) === 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 --- _doc/CHANGELOG.adoc | 25 +++++++++++++++++++++++++ gotp.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) 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 :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 `-`. -- cgit v1.3