From d9d488cabe048fe023d44115b87174dfea909148 Mon Sep 17 00:00:00 2001 From: Colin Lyons Date: Sun, 15 Jan 2023 14:23:35 +0000 Subject: [PATCH] btcd container based on scratch. --- version.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/version.go b/version.go index 094ea2e3..04a2327d 100644 --- a/version.go +++ b/version.go @@ -8,13 +8,13 @@ var ( // URL is the git URL for the repository. URL = "github.com/indra-labs/indra" // GitRef is the gitref, as in refs/heads/branchname. - GitRef = "refs/heads/ind-bootstrap" + GitRef = "refs/heads/main" // ParentGitCommit is the commit hash of the parent HEAD. - ParentGitCommit = "92b18fe19e3fb8d3916190676d26630eb164a53d" + ParentGitCommit = "2273fb78b4b64e5070b70053873330dfc4755399" // BuildTime stores the time when the current binary was built. - BuildTime = "2023-01-15T14:20:06Z" + BuildTime = "2023-01-15T14:23:35Z" // SemVer lists the (latest) git tag on the release. - SemVer = "v0.1.7" + SemVer = "v0.1.8" // PathBase is the path base returned from runtime caller. PathBase = "/home/lyo/Git/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 = 7 + Patch = 8 ) // Version returns a pretty printed version information string.