Skip to content

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 509ebf3 commit 1a74ead
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
## 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.

## 0.0.1 (April 20, 2021)

* Update acceptance tests to use new packer-plugin-sdk/acctest framework
* Extract linode plugin from Packer core
* Extract linode plugin from Packer core
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 {
linode = {
version = ">= 0.0.1"
version = ">= 1.0.0"
source = "github.com/hashicorp/linode"
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/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 {
linode = {
version = ">= 0.0.1"
version = ">= 1.0.0"
source = "github.com/hashicorp/linode"
}
}
Expand Down Expand Up @@ -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/).

2 changes: 1 addition & 1 deletion example/basic_linode.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
packer {
required_plugins {
linode = {
version = ">= 0.0.1"
version = ">= 1.0.0"
source = "github.com/hashicorp/linode"
}
}
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1a74ead

Please sign in to comment.