From 4d031b2c867e40526aede6002ee92fd283f3ddb9 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Thu, 21 Dec 2023 14:26:12 -0500 Subject: [PATCH] version: prepare release 2.0.2 --- README.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3f43085f..f5909420 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 { azure = { - version = ">= 2.0.1" + version = ">= 2.0.2" source = "github.com/hashicorp/azure" } } diff --git a/version/version.go b/version/version.go index 30c9cbf4..9752c6d8 100644 --- a/version/version.go +++ b/version/version.go @@ -9,12 +9,12 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "2.0.1" + Version = "2.0.2" // 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 = "" // AzurePluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is.