Skip to content

Commit eeb5839

Browse files
committed
Cut release 1.1.0
1 parent c7f631f commit eeb5839

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

docs/README.md

Lines changed: 2 additions & 2 deletions
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 = ">= 1.0.0"
34+
version = ">= 1.1.0"
3535
source = "github.com/hashicorp/name"
3636
}
3737
}
@@ -54,4 +54,4 @@ repository locally and run the command `go build` from the root
5454
directory. Upon successful compilation, a `packer-plugin-name` plugin
5555
binary file can be found in the root directory.
5656
To install the compiled plugin, please follow the official Packer documentation
57-
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).
57+
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
77

88
var (
99
// Version is the main version number that is being run at the moment.
10-
Version = "1.0.4"
10+
Version = "1.1.0"
1111

1212
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1313
// (empty string) then it means that it is a final release. Otherwise, this
1414
// is a pre-release such as "dev" (in development), "beta", "rc1", etc.
15-
VersionPrerelease = "dev"
15+
VersionPrerelease = ""
1616

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

0 commit comments

Comments
 (0)