From f4a30d20c2666122d061781e4e02e8e058ee1969 Mon Sep 17 00:00:00 2001 From: kp2099 Date: Fri, 13 Mar 2026 11:59:44 +0530 Subject: [PATCH 1/2] prep 0.6.6 release --- version/version.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index f803da8a1..45d90febb 100644 --- a/version/version.go +++ b/version/version.go @@ -9,6 +9,7 @@ import ( "fmt" "github.com/hashicorp/go-version" + "github.com/hashicorp/packer-plugin-sdk/version" ) // The git commit that was compiled. This will be filled in by the compiler. @@ -20,7 +21,7 @@ var Version = "0.6.6" // 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. -var VersionPrerelease = "dev" +var VersionPrerelease = "" // The metadata for the version, this is optional information to add around // a particular release. From 873d1416da59d1b95993424c79cff228f1fdc9d2 Mon Sep 17 00:00:00 2001 From: kp2099 Date: Fri, 13 Mar 2026 12:12:28 +0530 Subject: [PATCH 2/2] prep release --- version/version.go | 1 - 1 file changed, 1 deletion(-) diff --git a/version/version.go b/version/version.go index 45d90febb..89ec7138d 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,6 @@ import ( "fmt" "github.com/hashicorp/go-version" - "github.com/hashicorp/packer-plugin-sdk/version" ) // The git commit that was compiled. This will be filled in by the compiler.