-
Notifications
You must be signed in to change notification settings - Fork 2
/
version.go
28 lines (23 loc) · 1.13 KB
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// File for handling versioning.
// This relies on naming git tags by the semantic version scheme, and on the correct forwarding of those tag names into the build process.
// If an invalid version string is supplied, the software will create a runtime error on startup.
package main
import (
"strings"
"github.com/coreos/go-semver/semver"
)
// versionString contains the semantic version of the software as a string.
//
// This variable is only used to transfer the correct version information into the build.
// Don't use this variable in the software, use `version` instead.
//
// When building the software, the default `v0.0.0-development` is used.
// To compile the program with the correct version information, compile the following way:
//
// `go build -ldflags="-X 'main.versionString=x.y.z'"`, where `x.y.z` is the correct and valid version from the git tag.
// This variable may or may not contain the prefix v.
var versionString = "0.0.0-development"
// version of the program.
//
// When converted into a string, this will not contain the v prefix.
var version = semver.Must(semver.NewVersion(strings.TrimPrefix(versionString, "v")))