mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* add BuildDate to version base * populate BuildDate with ldflags * include BuildDate in FullVersionNumber * add BuildDate to seal-status and associated status cmd * extend core/versions entries to include BuildDate * include BuildDate in version-history API and CLI * fix version history tests * fix sys status tests * fix TestStatusFormat * remove extraneous LD_FLAGS from build.sh * add BuildDate to build.bat * fix TestSysUnseal_Reset * attempt to add build-date to release builds * add branch to github build workflow * add get-build-date to build-* job needs * fix release build command vars * add missing quote in release build command * Revert "add branch to github build workflow" This reverts commit b835699ecb7c2c632757fa5fe64b3d5f60d2a886. * add changelog entry
18 lines
382 B
Go
18 lines
382 B
Go
package version
|
|
|
|
var (
|
|
// The git commit that was compiled. This will be filled in by the compiler.
|
|
GitCommit string
|
|
GitDescribe string
|
|
|
|
// The compilation date. This will be filled in by the compiler.
|
|
BuildDate string
|
|
|
|
// Whether cgo is enabled or not; set at build time
|
|
CgoEnabled bool
|
|
|
|
Version = "1.11.0"
|
|
VersionPrerelease = "dev1"
|
|
VersionMetadata = ""
|
|
)
|