From 5e2a344dda5cbd9dbb81d47d2419ea4e35d57894 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Mon, 5 Jun 2023 09:50:36 -0400 Subject: [PATCH 1/2] version: cut release 1.2.6 --- README.md | 2 +- docs/builders/index.mdx | 2 +- docs/datasources/index.mdx | 2 +- docs/post-processors/import.mdx | 2 +- version/version.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1fc40f4a8..30a2a2aba 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { amazon = { - version = ">= 1.2.5" + version = ">= 1.2.6" source = "github.com/hashicorp/amazon" } } diff --git a/docs/builders/index.mdx b/docs/builders/index.mdx index 538ae9a3f..1dee33b10 100644 --- a/docs/builders/index.mdx +++ b/docs/builders/index.mdx @@ -47,7 +47,7 @@ Then, run [`packer init`](/packer/docs/commands/init). packer { required_plugins { amazon = { - version = ">= 1.2.5" + version = ">= 1.2.6" source = "github.com/hashicorp/amazon" } } diff --git a/docs/datasources/index.mdx b/docs/datasources/index.mdx index 85651f1e9..b9f222f3b 100644 --- a/docs/datasources/index.mdx +++ b/docs/datasources/index.mdx @@ -27,7 +27,7 @@ Then, run [`packer init`](/packer/docs/commands/init). packer { required_plugins { amazon = { - version = ">= 1.2.5" + version = ">= 1.2.6" source = "github.com/hashicorp/amazon" } } diff --git a/docs/post-processors/import.mdx b/docs/post-processors/import.mdx index 08bca8ecb..eb5902197 100644 --- a/docs/post-processors/import.mdx +++ b/docs/post-processors/import.mdx @@ -47,7 +47,7 @@ Then, run [`packer init`](/packer/docs/commands/init). packer { required_plugins { amazon = { - version = ">= 1.2.5" + version = ">= 1.2.6" source = "github.com/hashicorp/amazon" } } diff --git a/version/version.go b/version/version.go index 58e1a7f29..d248de18c 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( // 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" + VersionPrerelease = "" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is. From 668c1f04fd1a21fb9ea2a61915c5aa9f92ae84d8 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Mon, 5 Jun 2023 09:51:01 -0400 Subject: [PATCH 2/2] version: prepare v1.2.7-dev --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index d248de18c..411667f63 100644 --- a/version/version.go +++ b/version/version.go @@ -7,12 +7,12 @@ import "github.com/hashicorp/packer-plugin-sdk/version" var ( // Version is the main version number that is being run at the moment. - Version = "1.2.6" + Version = "1.2.7" // 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 = "" + VersionPrerelease = "dev" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is.