Skip to content

Commit e82fa6d

Browse files
committed
cut v1.0.0 release
1 parent 185c509 commit e82fa6d

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.0. (June 14, 2021)
2+
3+
* Update packer-plugin-sdk to v0.2.3. [GH-9]
4+
* Fix internal package versioning. [GH-10]
5+
16
## 0.0.1 (April 21, 2021)
27

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

docs/README.md

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

version/version.go

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

55
var (
66
// Version is the main version number that is being run at the moment.
7-
Version = "0.0.2"
7+
Version = "1.0.0"
88

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

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

0 commit comments

Comments
 (0)