Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

Commit

Permalink
cut release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nywilken committed Jun 14, 2021
1 parent 16e6e94 commit 0567461
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## 0.0.3 (unreleased)
## 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 packer-plugin-sdk to v0.2.3 [GH-14]
* Add module retraction for v0.0.1 as it was a bad release. [GH-13]



## 0.0.2 (May 11, 2021)
* Fix registration bug that external caused plugin not to load properly [GH-]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
packer {
required_plugins {
puppet = {
version = ">= 0.0.2"
version = ">= 1.0.0"
source = "github.com/hashicorp/puppet"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
packer {
required_plugins {
puppet = {
version = ">= 0.0.2"
version = ">= 1.0.0"
source = "github.com/hashicorp/puppet"
}
}
Expand Down
2 changes: 1 addition & 1 deletion example/puppet-masterless.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packer {
}
puppet = {
source = "github.com/hashicorp/puppet"
version = ">=0.0.2"
version = ">=1.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

var (
// Version is the main version number that is being run at the moment.
Version = "0.0.2"
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
Expand Down

0 comments on commit 0567461

Please sign in to comment.