diff --git a/version.go b/version.go index 62ee3b12..f4eb4b70 100644 --- a/version.go +++ b/version.go @@ -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 = "282e23f9f29ffeaddb0d498186e30b90fd34a198" + ParentGitCommit = "11b8b67aa4ee4f39159c77053d3199e9113b569b" // BuildTime stores the time when the current binary was built. - BuildTime = "2022-12-10T10:57:40+01:00" + BuildTime = "2022-12-10T11:17:09+01:00" // SemVer lists the (latest) git tag on the build. - SemVer = "v0.0.170" + SemVer = "v0.0.171" // 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 = 170 + Patch = 171 ) // Version returns a pretty printed version information string.