2019-04-12 21:54:35 +00:00
|
|
|
package version
|
|
|
|
|
|
|
|
var (
|
|
|
|
// The git commit that was compiled. This will be filled in by the compiler.
|
|
|
|
GitCommit string
|
|
|
|
GitDescribe string
|
|
|
|
|
|
|
|
// Whether cgo is enabled or not; set at build time
|
|
|
|
CgoEnabled bool
|
|
|
|
|
2019-09-17 15:36:55 +00:00
|
|
|
Version = "1.3.0"
|
2019-11-12 03:33:14 +00:00
|
|
|
VersionPrerelease = ""
|
2019-04-12 21:54:35 +00:00
|
|
|
VersionMetadata = ""
|
|
|
|
)
|