627c43e496
* 1.10.0-dev version bump * Remove hard-coded versions from tests. (#13026) Co-authored-by: Nick Cabatoff <ncabatoff@hashicorp.com>
15 lines
296 B
Go
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.10.0"
|
|
VersionPrerelease = "dev"
|
|
VersionMetadata = ""
|
|
)
|