From a5b9f156038224141afdce20de42d9f94973c415 Mon Sep 17 00:00:00 2001 From: Ethan Davidson Date: Sun, 30 Jun 2024 13:01:36 -0400 Subject: [PATCH] replace deprecated function and prep for next release --- main.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/main.go b/main.go index 7b373f5..1608976 100644 --- a/main.go +++ b/main.go @@ -13,16 +13,11 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.6.2" - - // 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 = "" + Version = "0.6.3" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is. - PluginVersion = version.InitializePluginVersion(Version, VersionPrerelease) + PluginVersion = version.NewRawVersion(Version) ) func main() {