chore: prepare release v2.14.0

This commit is contained in:
Manuel Vogel 2021-07-09 09:13:36 +02:00
parent ce43fbee6f
commit 934bc2935f
No known key found for this signature in database
GPG key ID: 24E54F214569A8A5
5 changed files with 26 additions and 6 deletions

View file

@ -1,3 +1,23 @@
## 2.14.0 (JuLy 09, 2021)
IMPROVEMENTS
- support terraform v1 ([#242](https://github.com/kreuzwerker/terraform-provider-docker/issues/242))
BUG FIXES
- registry_image): consider .dockerignore in image build ([#240](https://github.com/kreuzwerker/terraform-provider-docker/issues/240))
- Update the URL of the docker hub registry ([#230](https://github.com/kreuzwerker/terraform-provider-docker/issues/230))
- service bind options ([#234](https://github.com/kreuzwerker/terraform-provider-docker/issues/234))
- deps: update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.7.0 ([#236](https://github.com/kreuzwerker/terraform-provider-docker/issues/236))
DOCS
- update to absolute path for registry image context ([#246](https://github.com/kreuzwerker/terraform-provider-docker/issues/246))
- service entrypoint ([#244](https://github.com/kreuzwerker/terraform-provider-docker/issues/244))
- update readme with logos and subsections ([#235](https://github.com/kreuzwerker/terraform-provider-docker/issues/235))
CHORE
- deps: update nginx docker tag to v1.21.1 ([#243](https://github.com/kreuzwerker/terraform-provider-docker/issues/243))
- deps: update tj-actions/verify-changed-files action to v7 ([#237](https://github.com/kreuzwerker/terraform-provider-docker/issues/237))
- deps: update nginx:1.21.0 docker digest to d1b8ff2 ([#232](https://github.com/kreuzwerker/terraform-provider-docker/issues/232))
## 2.13.0 (June 22, 2021)

View file

@ -28,7 +28,7 @@ $ make build
## Example usage
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.13.0/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.14.0/docs) of the registry
or use the following example:
@ -40,7 +40,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
version = "2.13.0"
version = "2.14.0"
}
}
}

View file

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

View file

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

View file

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