Skip to content

Commit 7759198

Browse files
committed
update to v1.0.0
1 parent 4bc6e0f commit 7759198

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
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.0 (June 14, 2021)
2+
* Update packer-plugin-sdk to version 0.2.3. [GH-29]
3+
* Add disable_shutdown option to Hyper-V builders. [GH-23]
4+
15
## 0.0.1 (April 21, 2021)
26

37
* Hyper-V Plugin break out from Packer core. Changes prior to break out can be found in [Packer's CHANGELOG](https://github.com/hashicorp/packer/blob/master/CHANGELOG.md).

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
hyperv = {
22-
version = ">= 0.0.1"
22+
version = ">= 1.0.0"
2323
source = "github.com/hashicorp/hyperv"
2424
}
2525
}

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
3131
packer {
3232
required_plugins {
3333
name = {
34-
version = ">= 0.0.1"
34+
version = ">= 1.0.0"
3535
source = "github.com/hashicorp/name"
3636
}
3737
}

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import (
1212

1313
var (
1414
// Version is the main version number that is being run at the moment.
15-
Version = "0.0.2"
15+
Version = "1.0.0"
1616

1717
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1818
// (empty string) then it means that it is a final release. Otherwise, this
1919
// is a pre-release such as "dev" (in development), "beta", "rc1", etc.
20-
VersionPrerelease = "dev"
20+
VersionPrerelease = ""
2121

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

0 commit comments

Comments
 (0)