cc03e4a10c
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
20 lines
618 B
Go
20 lines
618 B
Go
package version
|
|
|
|
import (
|
|
"github.com/hashicorp/packer-plugin-sdk/version"
|
|
)
|
|
|
|
var (
|
|
// Version is the main version number that is being run at the moment.
|
|
Version = "v0.6.0"
|
|
|
|
// VersionPrerelease is 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.
|
|
VersionPrerelease = "dev"
|
|
|
|
// PluginVersion is used by the plugin set to allow Packer to recognize
|
|
// what version this plugin is.
|
|
PluginVersion = version.InitializePluginVersion(Version, VersionPrerelease)
|
|
)
|