Skip to content

Commit 45368ef

Browse files
authored
chore(release): v2.0.0 (#446)
Release v2.0.0. Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
1 parent 686a720 commit 45368ef

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

.web-docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To install this plugin, add following to your Packer configuration and run
1313
packer {
1414
required_plugins {
1515
vmware = {
16-
version = "~> 1"
16+
version = "~> 2"
1717
source = "github.com/vmware/vmware"
1818
}
1919
}

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ desired strategy:
2424
runs provisioners on the virtual machine, and then exports the virtual machine as an
2525
image. Use this builder to start from an existing image as the source.
2626

27-
## Supported Hypervisors
27+
## Requirements
28+
29+
**Hypervisors**:
2830

2931
This plugin supports the following desktop hypervisors.
3032

@@ -44,13 +46,9 @@ This plugin supports the following desktop hypervisors.
4446
>
4547
> For VMware ESX support, please use the [Packer plugin for VMware vSphere][packer-plugin-vsphere].
4648
47-
## Requirements
48-
4949
**Go**:
5050

51-
- [Go 1.24.13][golang-install]
52-
53-
Required if building the plugin.
51+
- [Go 1.24.13][golang-install] is required to build the plugin from source.
5452

5553
## Installation
5654

@@ -66,7 +64,7 @@ packer {
6664
required_version = ">= 1.7.0"
6765
required_plugins {
6866
vmware = {
69-
version = ">= 1.2.0"
67+
version = ">= 2.0.0"
7068
source = "github.com/vmware/vmware"
7169
}
7270
}
@@ -90,7 +88,7 @@ Examples:
9088
2. Install a specific version of the plugin:
9189

9290
```shell
93-
packer plugins install github.com/vmware/vmware@v1.2.0
91+
packer plugins install github.com/vmware/vmware@v2.0.0
9492
```
9593

9694
### Using the Source

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To install this plugin, add following to your Packer configuration and run
1313
packer {
1414
required_plugins {
1515
vmware = {
16-
version = "~> 1"
16+
version = "~> 2"
1717
source = "github.com/vmware/vmware"
1818
}
1919
}

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
88

99
var (
1010
Version = "2.0.0"
11-
VersionPrerelease = "dev"
11+
VersionPrerelease = ""
1212
VersionMetadata = ""
1313
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1414
)

0 commit comments

Comments
 (0)