Switched everything to include faster derived key instead of signature

This commit is contained in:
David Vennik
2022-12-10 13:20:31 +01:00
parent 362477d1e7
commit b3b470014b
5 changed files with 44 additions and 41 deletions

View File

@@ -13,11 +13,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "090792e64f4eb27e10b82d29053cd5631d6ae982"
ParentGitCommit = "bde43adc4f17589a5629c0e412dcec6d980cb9b2"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-10T11:42:56+01:00"
BuildTime = "2022-12-10T13:20:31+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.174"
SemVer = "v0.0.175"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -25,7 +25,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 174
Patch = 175
)
// Version returns a pretty printed version information string.