diff --git a/CHANGELOG.md b/CHANGELOG.md index 4310086f..71ab42ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## 1.1.3 (June 9, 2026) + +### BUG FIXES: + +* Fix security vulnerabilities by updating transitive dependencies (including `ulikunitz`) by @sanyaraj2424 in https://github.com/hashicorp/packer-plugin-docker/pull/233 +* Fix authorization-related and dependency issues through module updates by @sanyaraj2424 in https://github.com/hashicorp/packer-plugin-docker/pull/228 and https://github.com/hashicorp/packer-plugin-docker/pull/229 + +### IMPROVEMENTS: + +* Update `github.com/hashicorp/packer-plugin-sdk` dependency by @dependabot[bot] in https://github.com/hashicorp/packer-plugin-docker/pull/222 and https://github.com/hashicorp/packer-plugin-docker/pull/232 +* Improve CI linting reliability by upgrading `golangci-lint`, migrating lint configuration, and reporting only new issues by @sanyaraj2424. +* Add automated backport workflow support by @devashish-patel in https://github.com/hashicorp/packer-plugin-docker/pull/221 +* Update Docker builder documentation by @aslindhurai-suntrion in https://github.com/hashicorp/packer-plugin-docker/pull/218 +* Update copyright and license headers for compliance by @hashicorp-copywrite[bot] in https://github.com/hashicorp/packer-plugin-docker/pull/223 + +### Other Changes + +* Release preparation and version update changes for `1.1.3` by @sanyaraj2424 +* Dev version preparation by @anshulSharma in https://github.com/hashicorp/packer-plugin-docker/pull/217 + ## 1.1.2 (July 31, 2025) ### IMPROVEMENTS: diff --git a/version/VERSION b/version/VERSION index db160f31..9c1218c2 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -1.1.3-dev \ No newline at end of file +1.1.3 \ No newline at end of file diff --git a/version/version.go b/version/version.go index 22692a4a..a8512c58 100644 --- a/version/version.go +++ b/version/version.go @@ -7,7 +7,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version" var ( Version = "1.1.3" - VersionPrerelease = "dev" + VersionPrerelease = "" VersionMetadata = "" PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata) )