open-vault/sdk/version/version_base.go
2020-02-20 09:11:25 +00:00

15 lines
296 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.4.0"
VersionPrerelease = "beta"
VersionMetadata = ""
)