You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/version/version_base.go

28 lines
726 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package version
var (
// GitCommit is the git commit that was compiled. This will be filled in by the compiler.
GitCommit string
GitDescribe string
// CgoEnabled is whether cgo is enabled or not; set at build time
CgoEnabled bool
// Version is the base version
// Default values - set when building locally (at build time)
Version = "0.15.0"
// VersionPrerelease is also set at compile time, similarly to Version.
VersionPrerelease string
// VersionMetadata is also set at compile time.
VersionMetadata string
// BuildDate is the date of the build, which corresponds to the timestamp of
// the most recent commit
BuildDate string
)