Skip to content

Commit 08c98c7

Browse files
committed
Openstack Plugin Release Version 1.1.4
1 parent 8298842 commit 08c98c7

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.1.4 (June 23, 2026)
2+
3+
* fix: add an optional wait before creating the image to improve reliability in image creation workflows.
4+
* fix: use `openstack` as the HCP metadata provider name (instead of the default prefixed provider value).
5+
* chore: add the HCP Ready flag to web metadata.
6+
* chore: update copyright and license headers across the codebase for compliance.
7+
* chore: bump `github.com/hashicorp/packer-plugin-sdk` from `0.6.4` to `0.6.7`.
8+
19
## 1.0.0 (June 14, 2021)
210

311
* Update packer-plugin-sdk to version 0.2.3. [GH-29]

version/version.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ var (
1212
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1313
// (empty string) then it means that it is a final release. Otherwise, this
1414
// is a pre-release such as "dev" (in development), "beta", "rc1", etc.
15-
VersionPrerelease = "dev"
15+
VersionPrerelease = ""
16+
17+
VersionMetadata = ""
1618

1719
// PluginVersion is used by the plugin set to allow Packer to recognize
1820
// what version this plugin is.
19-
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, "")
21+
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
2022
)

0 commit comments

Comments
 (0)