mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-21 02:31:11 +01:00
* update prerelease version in sdk to be dev-1 * Update sdk/version/version_base.go Co-authored-by: Meggie <meggie@hashicorp.com> Co-authored-by: Meggie <meggie@hashicorp.com>
15 lines
297 B
Go
15 lines
297 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.10.0"
|
|
VersionPrerelease = "dev1"
|
|
VersionMetadata = ""
|
|
)
|