From 0a88405163f6451e051477054669a747c7ecaba0 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 3 Mar 2023 09:03:28 -0500 Subject: [PATCH] version: cut release 1.1.2 --- README.md | 2 +- docs/README.md | 2 +- version/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index daa283f1..60c3b3e6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { proxmox = { - version = ">= 1.1.1" + version = ">= 1.1.2" source = "github.com/hashicorp/proxmox" } } diff --git a/docs/README.md b/docs/README.md index 258a73b0..9030f319 100644 --- a/docs/README.md +++ b/docs/README.md @@ -26,7 +26,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { name = { - version = ">= 1.1.1" + version = ">= 1.1.2" source = "github.com/hashicorp/proxmox" } } diff --git a/version/version.go b/version/version.go index e686ffe9..29250ecc 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.