Skip to content

Commit 78a1312

Browse files
version: prepare v1.1.0 release
1 parent 4156b33 commit 78a1312

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

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

example/build.pkr.hcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
packer {
55
required_plugins {
66
hcloud = {
7-
version = ">=v1.0.5"
7+
version = ">=1.1.0"
88
source = "github.com/hashicorp/hcloud"
99
}
1010
}

version/version.go

+2-2
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.5"
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)