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
|
|
|
|
|
|
|
// The git commit that was compiled. This will be filled in by the compiler.
|
|
|
|
var GitCommit string
|
|
|
|
|
|
|
|
// The main version number that is being run at the moment.
|
2021-03-31 17:32:59 +00:00
|
|
|
const Version = "1.7.2"
|
2014-10-27 20:51:34 -07: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.
|
2021-03-31 17:32:59 +00:00
|
|
|
const VersionPrerelease = "dev"
|
2016-04-21 13:19:43 -07:00
|
|
|
|
2020-11-10 14:48:06 -08:00
|
|
|
var PackerVersion *pluginVersion.PluginVersion
|
2016-04-21 13:19:43 -07:00
|
|
|
|
2020-11-09 17:09:32 -08:00
|
|
|
func FormattedVersion() string {
|
|
|
|
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
|
|
|
}
|