2023-03-02 15:37:05 -05:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-10 15:53:29 -07:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-02 15:37:05 -05:00
|
|
|
|
2016-04-21 13:19:43 -07:00
|
|
|
package version
|
|
|
|
|
|
|
|
|
|
import (
|
2020-10-27 10:03:36 +01:00
|
|
|
"github.com/hashicorp/go-version"
|
2020-12-17 13:29:25 -08:00
|
|
|
pluginVersion "github.com/hashicorp/packer-plugin-sdk/version"
|
2016-04-21 13:19:43 -07:00
|
|
|
)
|
2014-10-27 20:51:34 -07:00
|
|
|
|
2022-02-25 15:56:20 -08:00
|
|
|
var (
|
|
|
|
|
// The git commit that was compiled. This will be filled in by the compiler.
|
|
|
|
|
GitCommit string
|
|
|
|
|
GitDescribe string
|
2014-10-27 20:51:34 -07:00
|
|
|
|
2022-02-25 15:56:20 -08:00
|
|
|
// Whether cgo is enabled or not; set at build time
|
|
|
|
|
CgoEnabled bool
|
2014-10-27 20:51:34 -07:00
|
|
|
|
2023-01-19 13:02:09 -06:00
|
|
|
// The next version number that will be released. This will be updated after every release
|
|
|
|
|
// Version must conform to the format expected by github.com/hashicorp/go-version
|
|
|
|
|
// for tests to work.
|
|
|
|
|
// A pre-release marker for the version can also be specified (e.g -dev). If this is omitted
|
2022-02-25 15:56:20 -08:00
|
|
|
// The main version number that is being run at the moment.
|
2023-01-19 13:02:09 -06:00
|
|
|
|
2023-05-31 11:50:56 -04:00
|
|
|
Version = "1.10.0"
|
2023-01-19 13:02:09 -06:00
|
|
|
|
2022-02-25 15:56:20 -08:00
|
|
|
// A pre-release marker for the version. If this is "" (empty string)
|
|
|
|
|
// then it means that it is a final release. Otherwise, this is a pre-release
|
|
|
|
|
// such as "dev" (in development), "beta", "rc1", etc.
|
2023-01-19 13:02:09 -06:00
|
|
|
|
2022-12-13 14:29:25 -05:00
|
|
|
VersionPrerelease = "dev"
|
2023-01-19 13:02:09 -06:00
|
|
|
|
|
|
|
|
VersionMetadata = ""
|
2022-02-25 15:56:20 -08:00
|
|
|
)
|
2016-04-21 13:19:43 -07:00
|
|
|
|
2020-11-10 14:48:06 -08:00
|
|
|
var PackerVersion *pluginVersion.PluginVersion
|
2020-11-09 17:09:32 -08:00
|
|
|
|
2016-04-21 13:19:43 -07:00
|
|
|
func FormattedVersion() string {
|
2020-11-09 17:09:32 -08:00
|
|
|
return PackerVersion.FormattedVersion()
|
2016-04-21 13:19:43 -07:00
|
|
|
}
|
2020-10-27 10:03:36 +01:00
|
|
|
|
|
|
|
|
// SemVer is an instance of version.Version. This has the secondary
|
|
|
|
|
// benefit of verifying during tests and init time that our version is a
|
|
|
|
|
// proper semantic version, which should always be the case.
|
|
|
|
|
var SemVer *version.Version
|
|
|
|
|
|
|
|
|
|
func init() {
|
2020-11-10 14:48:06 -08:00
|
|
|
PackerVersion = pluginVersion.InitializePluginVersion(Version, VersionPrerelease)
|
|
|
|
|
SemVer = PackerVersion.SemVer()
|
2020-10-27 10:03:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// String returns the complete version string, including prerelease
|
|
|
|
|
func String() string {
|
2020-11-09 17:09:32 -08:00
|
|
|
return PackerVersion.String()
|
2020-10-27 10:03:36 +01:00
|
|
|
}
|