2023-03-28 22:48:58 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2016-11-03 00:27:49 +00:00
|
|
|
package version
|
2013-12-19 19:22:08 +00:00
|
|
|
|
2016-07-19 22:06:32 +00:00
|
|
|
import (
|
2023-01-05 20:16:47 +00:00
|
|
|
_ "embed"
|
2022-05-06 03:41:18 +00:00
|
|
|
"fmt"
|
2016-07-19 22:06:32 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2015-07-08 22:22:12 +00:00
|
|
|
var (
|
2016-11-03 00:27:49 +00:00
|
|
|
// The git commit that was compiled. These will be filled in by the
|
|
|
|
// compiler.
|
2020-07-14 19:17:45 +00:00
|
|
|
GitCommit string
|
2013-12-19 19:22:08 +00:00
|
|
|
|
2023-01-05 20:16:47 +00:00
|
|
|
// The next version number that will be released. This will be updated after every release
|
2017-08-28 10:20:21 +00:00
|
|
|
// Version must conform to the format expected by github.com/hashicorp/go-version
|
2017-08-30 11:25:14 +00:00
|
|
|
// for tests to work.
|
2023-01-05 20:16:47 +00:00
|
|
|
// A pre-release marker for the version can also be specified (e.g -dev). If this is omitted
|
|
|
|
// then it means that it is a final release. Otherwise, this is a pre-release
|
|
|
|
// such as "dev" (in development), "beta", "rc1", etc.
|
|
|
|
//go:embed VERSION
|
|
|
|
fullVersion string
|
|
|
|
|
2023-02-28 20:37:52 +00:00
|
|
|
Version, VersionPrerelease, _ = strings.Cut(strings.TrimSpace(fullVersion), "-")
|
2017-08-30 11:25:14 +00:00
|
|
|
|
2022-05-06 03:41:18 +00:00
|
|
|
// https://semver.org/#spec-item-10
|
|
|
|
VersionMetadata = ""
|
|
|
|
|
2022-06-02 19:46:18 +00:00
|
|
|
// The date/time of the build (actually the HEAD commit in git, to preserve stability)
|
2022-06-09 22:55:11 +00:00
|
|
|
// This isn't just informational, but is also used by the licensing system. Default is chosen to be flagantly wrong.
|
|
|
|
BuildDate string = "1970-01-01T00:00:01Z"
|
2016-11-03 00:27:49 +00:00
|
|
|
)
|
2016-07-19 22:06:32 +00:00
|
|
|
|
2016-07-20 01:38:15 +00:00
|
|
|
// GetHumanVersion composes the parts of the version in a way that's suitable
|
|
|
|
// for displaying to humans.
|
|
|
|
func GetHumanVersion() string {
|
2016-07-19 22:06:32 +00:00
|
|
|
version := Version
|
|
|
|
release := VersionPrerelease
|
2022-05-06 03:41:18 +00:00
|
|
|
metadata := VersionMetadata
|
2018-06-20 19:44:19 +00:00
|
|
|
|
2016-07-19 22:06:32 +00:00
|
|
|
if release != "" {
|
2022-05-06 03:41:18 +00:00
|
|
|
version += fmt.Sprintf("-%s", release)
|
|
|
|
}
|
|
|
|
|
|
|
|
if metadata != "" {
|
|
|
|
version += fmt.Sprintf("+%s", metadata)
|
2016-07-19 22:06:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Strip off any single quotes added by the git information.
|
2021-04-25 17:22:55 +00:00
|
|
|
return strings.ReplaceAll(version, "'", "")
|
2016-07-19 22:06:32 +00:00
|
|
|
}
|