2016-04-21 16:19:43 -04:00
|
|
|
package version
|
|
|
|
|
|
|
|
import (
|
2020-10-27 05:03:36 -04:00
|
|
|
"github.com/hashicorp/go-version"
|
2020-12-17 16:29:25 -05:00
|
|
|
pluginVersion "github.com/hashicorp/packer-plugin-sdk/version"
|
2016-04-21 16:19:43 -04:00
|
|
|
)
|
2014-10-27 23:51:34 -04: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-04-05 19:32:25 -04:00
|
|
|
const Version = "1.7.3"
|
2014-10-27 23:51:34 -04: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-04-05 19:32:25 -04:00
|
|
|
const VersionPrerelease = "dev"
|
2016-04-21 16:19:43 -04:00
|
|
|
|
2020-11-10 17:48:06 -05:00
|
|
|
var PackerVersion *pluginVersion.PluginVersion
|
2016-04-21 16:19:43 -04:00
|
|
|
|
2020-11-09 20:09:32 -05:00
|
|
|
func FormattedVersion() string {
|
|
|
|
return PackerVersion.FormattedVersion()
|
2016-04-21 16:19:43 -04:00
|
|
|
}
|
2020-10-27 05:03:36 -04: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 17:48:06 -05:00
|
|
|
PackerVersion = pluginVersion.InitializePluginVersion(Version, VersionPrerelease)
|
|
|
|
SemVer = PackerVersion.SemVer()
|
2020-10-27 05:03:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// String returns the complete version string, including prerelease
|
|
|
|
func String() string {
|
2020-11-09 20:09:32 -05:00
|
|
|
return PackerVersion.String()
|
2020-10-27 05:03:36 -04:00
|
|
|
}
|