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
|
|
|
|
|
2020-02-20 09:08:21 +00:00
|
|
|
Version = "1.4.0"
|
2020-04-16 17:10:35 +00:00
|
|
|
VersionPrerelease = ""
|
2019-04-12 21:54:35 +00:00
|
|
|
VersionMetadata = ""
|
|
|
|
)
|