From 9c3552652a95c28a42a6d887460661c6debebfb4 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Mon, 5 Jun 2023 09:50:36 -0400 Subject: [PATCH] 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 e8c1ba74c..d3c5ba442 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.