diff --git a/version.go b/version.go index 54c0c6e1..a42ea744 100644 --- a/version.go +++ b/version.go @@ -10,11 +10,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 = "4d6d252323febf8bb0d3f0783e02b762ca398e2d" + ParentGitCommit = "d99b54fdfc80cd4694e4c4d8495dc5a48a93169b" // BuildTime stores the time when the current binary was built. - BuildTime = "2023-01-09T00:04:27Z" + BuildTime = "2023-01-09T14:44:56Z" // SemVer lists the (latest) git tag on the release. - SemVer = "v0.1.6" + SemVer = "v0.1.7" // 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. @@ -22,7 +22,7 @@ var ( // Minor is the minor number from the tag. Minor = 1 // Patch is the patch version number from the tag. - Patch = 6 + Patch = 7 ) // Version returns a pretty printed version information string.