Skip to content

Commit 6ef4f4e

Browse files
committed
cut v1.0.0 release
1 parent de55cac commit 6ef4f4e

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## 1.0.0 (June 14, 2021)
2+
3+
### Enhancements:
4+
5+
* Validate template_name and vm_name per proxmox requirements. [GH-15]
6+
* Update to latest Packer Plugin SDK [GH-19]
7+
8+
### Bug Fixes:
9+
10+
* Fix qemu_agent to default to true when using HCL2 [GH-17]
11+
12+
## 0.0.2 (April 20, 2021)
13+
14+
* Fast-follow release to resolve goreleaser issues.
15+
16+
## 0.0.1 (April 20, 2021)
17+
18+
* Proxmox 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
proxmox = {
22-
version = ">= 0.0.1"
22+
version = ">= 1.0.0"
2323
source = "github.com/hashicorp/proxmox"
2424
}
2525
}

docs/README.md

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

main.go

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

1414
var (
1515
// Version is the main version number that is being run at the moment.
16-
Version = "0.0.1"
16+
Version = "1.0.0"
1717

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

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

0 commit comments

Comments
 (0)