diff --git a/CHANGELOG.md b/CHANGELOG.md index cfad2b7..973924f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.1.4 (June 23, 2026) + +* fix: add an optional wait before creating the image to improve reliability in image creation workflows. +* fix: use `openstack` as the HCP metadata provider name (instead of the default prefixed provider value). +* chore: add the HCP Ready flag to web metadata. +* chore: update copyright and license headers across the codebase for compliance. +* chore: bump `github.com/hashicorp/packer-plugin-sdk` from `0.6.4` to `0.6.7`. + ## 1.0.0 (June 14, 2021) * Update packer-plugin-sdk to version 0.2.3. [GH-29] diff --git a/version/version.go b/version/version.go index 6d0fad5..da198a6 100644 --- a/version/version.go +++ b/version/version.go @@ -12,9 +12,11 @@ var ( // VersionPrerelease is A pre-release marker for the Version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this // is a pre-release such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" + + VersionMetadata = "" // PluginVersion is used by the plugin set to allow Packer to recognize // what version this plugin is. - PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, "") + PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata) )