From 6ef4f4e63f4c009cc8ef46d38f86598d2afdf6bc Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Mon, 14 Jun 2021 19:03:10 -0700 Subject: [PATCH] cut v1.0.0 release --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- docs/README.md | 2 +- main.go | 4 ++-- 4 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..5923d989 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +## 1.0.0 (June 14, 2021) + +### Enhancements: + +* Validate template_name and vm_name per proxmox requirements. [GH-15] +* Update to latest Packer Plugin SDK [GH-19] + +### Bug Fixes: + +* Fix qemu_agent to default to true when using HCL2 [GH-17] + +## 0.0.2 (April 20, 2021) + +* Fast-follow release to resolve goreleaser issues. + +## 0.0.1 (April 20, 2021) + +* Proxmox Plugin break out from Packer core. Changes prior to break out can be found in [Packer's CHANGELOG](https://github.com/hashicorp/packer/blob/master/CHANGELOG.md). \ No newline at end of file diff --git a/README.md b/README.md index 481e1114..29393649 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 { proxmox = { - version = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/proxmox" } } diff --git a/docs/README.md b/docs/README.md index 869c3356..cb92f62a 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 = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/name" } } diff --git a/main.go b/main.go index ec82a68c..1b5c917b 100644 --- a/main.go +++ b/main.go @@ -13,12 +13,12 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.0.1" + Version = "1.0.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.