From 7cae248b49eb3b495a3fcc08769431d9a59e4133 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 23 Jul 2026 11:16:03 -0400 Subject: [PATCH] chore(release): v2.3.0 Release v2.3.0. Signed-off-by: Ryan Johnson --- README.md | 4 ++-- version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a76851ca..531b4fd8 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ packer { required_version = ">= 1.7.0" required_plugins { vmware = { - version = ">= 2.2.0" + version = ">= 2.3.0" source = "github.com/vmware/vsphere" } } @@ -87,7 +87,7 @@ Examples: 2. Install a specific version of the plugin: ```shell - packer plugins install github.com/vmware/vsphere@v2.2.0 + packer plugins install github.com/vmware/vsphere@v2.3.0 ``` ### Using the Source diff --git a/version/version.go b/version/version.go index dba64364..b7f30076 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version" var ( Version = "2.3.0" - VersionPrerelease = "dev" + VersionPrerelease = "" VersionMetadata = "" PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata) )