bumping version

This commit is contained in:
херетик
2023-05-18 12:39:10 +01:00
parent 654916462d
commit fce7879977

View File

@@ -1,5 +1,15 @@
package indra
// Put invocations to run all the generators in here (
// check cmd/bumper/ to add them, and they will automatically run with:
//
// $ go generate .
//
// which will run all these generators below and finish with a go install.
//go:generate go run ./pkg/relay/gen/main.go
//go:generate go install ./...
import (
"fmt"
)
@@ -8,13 +18,13 @@ const (
// URL is the git URL for the repository.
URL = ""
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/protocol"
GitRef = "refs/heads/master"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "028d2aa98a187875f4913f3476bc248a5003ae6b"
ParentGitCommit = "654916462d717f2f521c3234d1044a3128140b90"
// BuildTime stores the time when the current binary was built.
BuildTime = "2023-05-12T20:20:16+01:00"
BuildTime = "2023-05-18T12:39:10+01:00"
// SemVer lists the (latest) git tag on the release.
SemVer = "v0.1.11"
SemVer = "v0.1.12"
// PathBase is the path base returned from runtime caller.
PathBase = "/opt/indra-labs/indra/"
// Major is the major number from the tag.
@@ -22,7 +32,7 @@ const (
// Minor is the minor number from the tag.
Minor = 1
// Patch is the patch version number from the tag.
Patch = 11
Patch = 12
)
// Version returns a pretty printed version information string.