open-vault/sdk/version/version_base.go
2019-04-18 18:49:49 -04:00

15 lines
292 B
Go

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
Version = "1.1.2"
VersionPrerelease = ""
VersionMetadata = ""
)