Update version imprinting (#1462)

* Add version tag constant

* Update build imprinting
This commit is contained in:
Neil Alexander 2020-10-01 16:09:11 +01:00 committed by GitHub
parent dbae85283f
commit 7048532bc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 4 deletions

View file

@ -12,10 +12,11 @@ const (
VersionMajor = 0
VersionMinor = 0
VersionPatch = 0
VersionTag = "" // example: "rc1"
)
func VersionString() string {
version := fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
version := fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionTag)
if branch != "" {
version += fmt.Sprintf("-%s", branch)
}