Skip to content

Commit 885d864

Browse files
committed
cut release v1.0.1
1 parent 9000b81 commit 885d864

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
## 1.0.1 (June 15, 2021)
2+
3+
* Downgrade github.com/tencentcloud/tencentcloud-sdk-go to 1.0.152 [GH-36]
4+
* Add module retraction for plugin version v1.0.0
5+
16
## 1.0.0 (June 14, 2021)
27

38
* Bump github.com/tencentcloud/tencentcloud-sdk-go to 1.0.173 [GH-34]
49
* Bump github.com/hashicorp/packer-plugin-sdk to 0.2.3 [GH-35]
510

611
## 0.0.1 (April 22, 2021)
712

8-
* Tencent Cloud 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).
13+
* Tencent Cloud 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
tencentcloud = {
22-
version = ">= 1.0.0"
22+
version = ">= 1.0.1"
2323
source = "github.com/hashicorp/tencentcloud"
2424
}
2525
}

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
2020
packer {
2121
required_plugins {
2222
tencentcloud = {
23-
version = ">= 1.0.0"
23+
version = ">= 1.0.1"
2424
source = "github.com/hashicorp/tencentcloud"
2525
}
2626
}
@@ -43,4 +43,4 @@ repository locally and run the command `go build` from the root
4343
directory. Upon successful compilation, a `packer-plugin-tencentcloud` plugin
4444
binary file can be found in the root directory.
4545
To install the compiled plugin, please follow the official Packer documentation
46-
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).
46+
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).

main.go

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

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

0 commit comments

Comments
 (0)