chore: prepare release v2.13.0

This commit is contained in:
Manuel Vogel 2021-06-22 17:32:10 +02:00
parent 8ade547de7
commit ab0beba679
No known key found for this signature in database
GPG key ID: 24E54F214569A8A5
5 changed files with 35 additions and 5 deletions

View file

@ -1,3 +1,33 @@
## 2.13.0 (June 22, 2021)
IMPROVEMENTS
- service image name fix and new data-source `docker_image` ([#212](https://github.com/kreuzwerker/terraform-provider-docker/issues/212))
BUG FIXES
- internal/provider include image name in error message ([#223](https://github.com/kreuzwerker/terraform-provider-docker/issues/223))
- service delete deadline ([#227](https://github.com/kreuzwerker/terraform-provider-docker/issues/227))
DOCS
- contributing: add oneline cli git cmd to get the changes since the last tag
- fix a few typos ([#216](https://github.com/kreuzwerker/terraform-provider-docker/issues/216))
- fix typos in docker_image example usage ([#213](https://github.com/kreuzwerker/terraform-provider-docker/issues/213))
CHORE
- refactor tests ([#201](https://github.com/kreuzwerker/terraform-provider-docker/issues/201))
- update module github.com/docker/docker to v20.10.7 ([#218](https://github.com/kreuzwerker/terraform-provider-docker/issues/218))
- update module github.com/docker/cli to v20.10.7 ([#217](https://github.com/kreuzwerker/terraform-provider-docker/issues/217))
- update module github.com/golangci/golangci-lint to v1.41.1 ([#226](https://github.com/kreuzwerker/terraform-provider-docker/issues/226))
- update module github.com/golangci/golangci-lint to v1.40.1 ([#194](https://github.com/kreuzwerker/terraform-provider-docker/issues/194))
- update alpine docker tag to v3.14.0 ([#225](https://github.com/kreuzwerker/terraform-provider-docker/issues/225))
- update stocard/gotthard docker digest to 38c2216
- update nginx docker tag to v1.21.0
- update nginx:1.18.0-alpine docker digest to 93baf2e
- update nginx docker tag to v1.21.0
- update alpine docker tag to v3.13.5
- update stocard/gotthard docker digest to 38c2216
- update nginx:1.18.0-alpine docker digest to 93baf2e
## 2.12.2 (May 26, 2021)
DOCS

View file

@ -25,7 +25,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
version = "2.12.2"
version = "2.13.0"
}
}
}

View file

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

View file

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

View file

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