diff --git a/README.md b/README.md index badf45a3..863bd30c 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 = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/parallels" } } diff --git a/docs/README.md b/docs/README.md index 19691ac8..a7294f6c 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 = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/parallels" } } diff --git a/example/build.pkr.hcl b/example/build.pkr.hcl index 7e94ff60..1a4ea633 100644 --- a/example/build.pkr.hcl +++ b/example/build.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { parallels = { - version = ">= 0.0.1" + version = ">= 1.0.0" source = "github.com/hashicorp/parallels" } } diff --git a/main.go b/main.go index 260c3c19..0e8b323b 100644 --- a/main.go +++ b/main.go @@ -12,12 +12,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.