Skip to content

Commit e8919e1

Browse files
committed
cut v1.0.1
1 parent c0888c0 commit e8919e1

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.1
2+
3+
`1.0.1` is the same as `1.0.0`
4+
15
## 1.0.0
26
* Update packer-plugin-sdk to v0.2.3. [GH-56]
37

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
1919
packer {
2020
required_plugins {
2121
docker = {
22-
version = ">= 1.0.0"
22+
version = ">= 1.0.1"
2323
source = "github.com/hashicorp/docker"
2424
}
2525
}

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
1919
packer {
2020
required_plugins {
2121
docker = {
22-
version = ">= 1.0.0"
22+
version = ">= 1.0.1"
2323
source = "github.com/hashicorp/docker"
2424
}
2525
}

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
// VersionPrerelease is A pre-release marker for the Version. If this is ""
2222
// (empty string) then it means that it is a final release. Otherwise, this
2323
// is a pre-release such as "dev" (in development), "beta", "rc1", etc.
24-
VersionPrerelease = "dev"
24+
VersionPrerelease = ""
2525

2626
// PluginVersion is used by the plugin set to allow Packer to recognize
2727
// what version this plugin is.

0 commit comments

Comments
 (0)