Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
6 changes: 4 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
Loading