diff --git a/CHANGELOG.md b/CHANGELOG.md index 84fcb0d..82581a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 (June 14, 2021) + +* Fixes crash of ProfitBricks plugin when running against HCL templates. [GH-9] + ## 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`. diff --git a/README.md b/README.md index c9b32d5..5361381 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 { profitbricks = { - version = ">= 1.0.0" + version = ">= 1.0.1" source = "github.com/hashicorp/profitbricks" } } diff --git a/docs/README.md b/docs/README.md index 6064806..9169458 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 { profitbricks = { - version = ">= 1.0.0" + version = ">= 1.0.1" source = "github.com/hashicorp/profitbricks" } } diff --git a/main.go b/main.go index 706c42c..641d8b8 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "1.0.0" + Version = "1.0.1" // 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