Chore: prepare release 3.1.2 (#688)

* chore: Use correct permissions statement in release workflow

* chore: Prepare release v3.1.2

---------

Co-authored-by: Martin Wentzel <junker@monoceres.uberspace.de>
This commit is contained in:
Martin 2025-04-15 08:39:11 +02:00 committed by GitHub
parent 8c4fd6bbba
commit cfcb6f2cf6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 10 deletions

View file

@ -21,6 +21,8 @@ env:
jobs:
goreleaser:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
@ -38,8 +40,6 @@ jobs:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
permissions:
contents: write
with:
version: latest
args: release --rm-dist

View file

@ -1,11 +1,18 @@
<a name="v3.1.2"></a>
## [v3.1.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.1.1...v3.1.2) (2025-04-14)
### Chore
* Use correct permissions statement in release workflow
<a name="v3.1.1"></a>
## [v3.1.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.1.0...v3.1.1) (2025-04-14)
### Chore
* Update makefile commands to match new svi version
* Update gorelease publish github token
* Prepare release 3.1.1 ([#687](https://github.com/kreuzwerker/terraform-provider-docker/issues/687))
<a name="v3.1.0"></a>

View file

@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
## Example usage
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.1.1/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.1.2/docs) of the registry
or use the following example:
@ -38,7 +38,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
version = "3.1.1"
version = "3.1.2"
}
}
}

View file

@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "3.1.1"
version = "3.1.2"
}
}
}
@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
version = "~> 3.1.1"
version = "~> 3.1.2"
host = "unix:///var/run/docker.sock"
}

View file

@ -1,5 +1,5 @@
provider "docker" {
version = "~> 3.1.1"
version = "~> 3.1.2"
host = "unix:///var/run/docker.sock"
}

View file

@ -2,7 +2,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "3.1.1"
version = "3.1.2"
}
}
}