From ff088d432f2f8ed17a4b515a9ef0094b7003ef8b Mon Sep 17 00:00:00 2001 From: Dom Del Nano Date: Tue, 9 Mar 2021 22:08:44 -0800 Subject: [PATCH] Add v prefix to version number --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index ac2de3d..59ae425 100644 --- a/main.go +++ b/main.go @@ -13,12 +13,12 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.3.0" + Version = "v0.3.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 = "dev8" + VersionPrerelease = "dev9" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is.