From ba71a48c1fa3b412b2d7065a37ba2ebfee89cabb Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 20 Jun 2023 12:14:12 -0400 Subject: [PATCH] Cut release v1.0.4 --- README.md | 2 +- docs/README.md | 4 ++-- version/version.go | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 863bd30c..6643e1c0 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 { parallels = { - version = ">= 1.0.0" + version = ">= 1.0.4" source = "github.com/hashicorp/parallels" } } diff --git a/docs/README.md b/docs/README.md index a7294f6c..c1693d72 100644 --- a/docs/README.md +++ b/docs/README.md @@ -50,7 +50,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { parallels = { - version = ">= 1.0.0" + version = ">= 1.0.4" source = "github.com/hashicorp/parallels" } } @@ -73,4 +73,4 @@ repository locally and run the command `go build` from the root directory. Upon successful compilation, a `packer-plugin-parallels` plugin binary file can be found in the root directory. To install the compiled plugin, please follow the official Packer documentation -on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins). \ No newline at end of file +on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins). diff --git a/version/version.go b/version/version.go index 0c227b5a..391ded3a 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.0.3" + Version = "1.0.4" // 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.