From 3e9b2aca353d05ab35737968644705e118d5bcfa Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Wed, 24 Jan 2024 10:37:40 -0500 Subject: [PATCH] version: cut release 1.3.0 --- README.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 856dcf76..9390c0a3 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.9" + version = ">= 1.3.0" source = "github.com/hashicorp/amazon" } } diff --git a/version/version.go b/version/version.go index d60f429c..bea83cc8 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.10" + Version = "1.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 = "dev" + VersionPrerelease = "" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is.