aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-02-03 21:56:53 +0700
committerShulhan <ms@kilabit.info>2025-02-03 21:56:53 +0700
commit6ee50da54c7c778add419922f82f0a7c6cbc8dc9 (patch)
treeb1716b4d2122347f6c2dfe8f409aeeaa2033783b
parent623dc62833b60beb4862b5740b105a1e2aaf32fa (diff)
downloadgotp-6ee50da54c7c778add419922f82f0a7c6cbc8dc9.tar.xz
Release gotp v0.6.1 (2025-02-03)v0.6.1
This releases mostly contains chores that update the dependencies and tooling. [CHORE] We have replace all linters from third party and external program to use internal command and "go vet" only. This should simplify setting up development. [CHORE] The CHANGELOG has been moved to the root of repository. This is to allow people to see the CHANGELOG directly without going to subdirectory first. [CHORE] The "gotp version" now set from output of "git describe" and set using "-ldflags" during build option. The output also changes from "go v<SEMVER>" to "go version <SEMVER>".
-rw-r--r--CHANGELOG.adoc22
-rw-r--r--gotp.go10
2 files changed, 25 insertions, 7 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 268441f..0f434cf 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -6,6 +6,28 @@
:sectlinks:
+[#v0_6_1]
+== gotp v0.6.1 (2025-02-03)
+
+This releases mostly contains chores that update the dependencies and
+tooling.
+
+[CHORE]
+We have replace all linters from third party and external program to use
+internal command and "go vet" only.
+This should simplify setting up development.
+
+[CHORE]
+The CHANGELOG has been moved to the root of repository.
+This is to allow people to see the CHANGELOG directly without going to
+subdirectory first.
+
+[CHORE]
+The "gotp version" now set from output of "git describe" and set using
+"-ldflags" during build option.
+The output also changes from "go v<SEMVER>" to "go version <SEMVER>".
+
+
[#v0_6_0]
== gotp v0.6.0 (2024-06-22)
diff --git a/gotp.go b/gotp.go
index d62b284..c278f1a 100644
--- a/gotp.go
+++ b/gotp.go
@@ -27,17 +27,13 @@ const (
)
// List of known providers.
-const (
- providerNameAegis = `aegis`
-)
+const providerNameAegis = `aegis`
// List of known format for export.
-const (
- formatNameURI = `uri`
-)
+const formatNameURI = `uri`
// Version define the latest version of this module and gotp CLI.
-var Version = `0.6.0`
+var Version = `0.6.1`
// termrw define terminal for reading passphrase.
// It is defined to mock parameter termrw in