From 1a74ead8d5445c1ffd1c08b32ac4f6acbbc0b61e Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Mon, 14 Jun 2021 10:18:07 -0400 Subject: [PATCH] cut release v1.0.0 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- docs/README.md | 4 ++-- example/basic_linode.pkr.hcl | 2 +- version/version.go | 4 ++-- 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e7f82ca..bc17e11d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.0.0 (June 14, 2021) +The code base for this plugin has been stable since the Packer core split. +We are marking this plugin as v1.0.0 to indicate that it is stable and ready for consumption via `packer init`. + +* Update linodego SDK to latest released version. [GH-7] +* Update packer-plugin-sdk to v0.2.3 [GH-12] + ## 0.0.2 (April 20, 2021) * Fix version used in user agent to refer to this plugin, not Packer core. @@ -5,4 +12,4 @@ ## 0.0.1 (April 20, 2021) * Update acceptance tests to use new packer-plugin-sdk/acctest framework -* Extract linode plugin from Packer core \ No newline at end of file +* Extract linode plugin from Packer core diff --git a/README.md b/README.md index d87cd841..a4d29e1f 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 { linode = { - version = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/linode" } } diff --git a/docs/README.md b/docs/README.md index 0ebec860..04f090d4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { linode = { - version = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/linode" } } @@ -49,5 +49,5 @@ on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installin ### Builders -- [builder](/docs/builders/builder-linode.mdx) - The Linode Builder creates [Linode Images](https://www.linode.com/docs/guides/linode-images/) for use on [Linode](https://www.linode.com/). +- [builder](/docs/builders/linode.mdx) - The Linode Builder creates [Linode Images](https://www.linode.com/docs/guides/linode-images/) for use on [Linode](https://www.linode.com/). diff --git a/example/basic_linode.pkr.hcl b/example/basic_linode.pkr.hcl index ae474c26..50b7b75c 100644 --- a/example/basic_linode.pkr.hcl +++ b/example/basic_linode.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { linode = { - version = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/linode" } } diff --git a/version/version.go b/version/version.go index f19dbb4d..40d3d57a 100644 --- a/version/version.go +++ b/version/version.go @@ -6,12 +6,12 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.0.3" + 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.