File tree Expand file tree Collapse file tree 7 files changed +24
-12
lines changed
Expand file tree Collapse file tree 7 files changed +24
-12
lines changed Original file line number Diff line number Diff line change 3838 PASSPHRASE : ${{ secrets.PASSPHRASE }}
3939 - name : Run GoReleaser
4040 uses : goreleaser/goreleaser-action@v5
41+ permissions :
42+ contents : write
4143 with :
4244 version : latest
4345 args : release --rm-dist
4446 env :
4547 GPG_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
46- GITHUB_TOKEN : ${{ secrets.GORELEASER_TOKEN }}
48+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11
2+ <a name =" v3.1.1 " ></a >
3+ ## [ v3.1.1] ( https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.1.0...v3.1.1 ) (2025-04-14)
4+
5+ ### Chore
6+
7+ * Update makefile commands to match new svi version
8+ * Update gorelease publish github token
9+
10+
211<a name =" v3.1.0 " ></a >
3- ## [ v3.1.0] ( https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.2...v3.1.0 ) (2025-04-13 )
12+ ## [ v3.1.0] ( https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.2...v3.1.0 ) (2025-04-14 )
413
514### Chore
615
16+ * Prepare release 3.1.0 ([ #685 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/685 ) )
717* update Go version to 1.22 for consistency across workflows, jo… ([ #613 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/613 ) )
818
919### Feat
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ chlog-%:
115115
116116replace-occurences-% :
117117 @echo " Replace occurences of old version strings..."
118- sed -i ' ' " s/$( shell (svu --strip- prefix current)) /$* /g" README.md docs/index.md examples/provider/provider-tf12.tf examples/provider/provider-tf13.tf
118+ sed -i " s/$( shell (svu --tag. prefix= ' ' current)) /$* /g" README.md docs/index.md examples/provider/provider-tf12.tf examples/provider/provider-tf13.tf
119119
120120release-% :
121121 @echo " Review the changes made by this script then execute the following:"
@@ -130,15 +130,15 @@ release-%:
130130
131131patch :
132132 @${MAKE} chlog-$(shell (svu patch) )
133- @${MAKE} replace-occurences-$(shell (svu --strip- prefix patch) )
133+ @${MAKE} replace-occurences-$(shell (svu --tag. prefix='' patch) )
134134 @${MAKE} release-$(shell (svu patch) )
135135
136136minor :
137137 @${MAKE} chlog-$(shell (svu minor) )
138- @${MAKE} replace-occurences-$(shell (svu --strip- prefix minor) )
138+ @${MAKE} replace-occurences-$(shell (svu --tag. prefix='' minor) )
139139 @${MAKE} release-$(shell (svu minor) )
140140
141141major :
142142 @${MAKE} chlog-$(shell (svu major) )
143- @${MAKE} replace-occurences-$(shell (svu --strip- prefix major) )
143+ @${MAKE} replace-occurences-$(shell (svu --tag. prefix='' major) )
144144 @${MAKE} release-$(shell (svu major) )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
2626
2727## Example usage
2828
29- Take a look at the examples in the [ documentation] ( https://registry.terraform.io/providers/kreuzwerker/docker/3.1.0 /docs ) of the registry
29+ Take a look at the examples in the [ documentation] ( https://registry.terraform.io/providers/kreuzwerker/docker/3.1.1 /docs ) of the registry
3030or use the following example:
3131
3232
@@ -38,7 +38,7 @@ terraform {
3838 # since new versions are released frequently
3939 docker = {
4040 source = "kreuzwerker/docker"
41- version = "3.1.0 "
41+ version = "3.1.1 "
4242 }
4343 }
4444}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
2525 required_providers {
2626 docker = {
2727 source = "kreuzwerker/docker"
28- version = "3.1.0 "
28+ version = "3.1.1 "
2929 }
3030 }
3131}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
5050
5151``` terraform
5252provider "docker" {
53- version = "~> 3.1.0 "
53+ version = "~> 3.1.1 "
5454 host = "unix:///var/run/docker.sock"
5555}
5656
Original file line number Diff line number Diff line change 11provider "docker" {
2- version = " ~> 3.1.0 "
2+ version = " ~> 3.1.1 "
33 host = " unix:///var/run/docker.sock"
44}
55
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ terraform {
22 required_providers {
33 docker = {
44 source = " kreuzwerker/docker"
5- version = " 3.1.0 "
5+ version = " 3.1.1 "
66 }
77 }
88}
You can’t perform that action at this time.
0 commit comments