Skip to content

Commit c71441c

Browse files
Openstack Plugin Release Version 1.1.4 (#156)
* Bump github.com/hashicorp/packer-plugin-sdk from 0.6.4 to 0.6.7 Bumps [github.com/hashicorp/packer-plugin-sdk](https://github.com/hashicorp/packer-plugin-sdk) from 0.6.4 to 0.6.7. - [Release notes](https://github.com/hashicorp/packer-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/packer-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](hashicorp/packer-plugin-sdk@v0.6.4...v0.6.7) --- updated-dependencies: - dependency-name: github.com/hashicorp/packer-plugin-sdk dependency-version: 0.6.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump github.com/hashicorp/packer-plugin-sdk from 0.6.4 to 0.6.7 * lint fix and dependencies upgrade * lint fix * Openstack Plugin Release Version 1.1.4 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7414e55 commit c71441c

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)