open-vault/sdk/version/version_base.go

15 lines
295 B
Go
Raw Normal View History

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-09-22 22:59:03 +00:00
Version = "1.6.0"
VersionPrerelease = "dev"
VersionMetadata = ""
)