From 934bc2935f6cf0890a222c6c8acbbca7cd56739b Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Fri, 9 Jul 2021 09:13:36 +0200 Subject: [PATCH] chore: prepare release v2.14.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 4 ++-- docs/index.md | 4 ++-- examples/provider/provider-tf12.tf | 2 +- examples/provider/provider-tf13.tf | 2 +- 5 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 103b1e10..caa04a6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index e069e426..456577d2 100644 --- a/README.md +++ b/README.md @@ -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" } } } diff --git a/docs/index.md b/docs/index.md index a9a36c7c..44db1a34 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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" } diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf index 465dfca8..2e85abb1 100644 --- a/examples/provider/provider-tf12.tf +++ b/examples/provider/provider-tf12.tf @@ -1,5 +1,5 @@ provider "docker" { - version = "~> 2.13.0" + version = "~> 2.14.0" host = "unix:///var/run/docker.sock" } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index aeb96dd1..6fd6ed4b 100644 --- a/examples/provider/provider-tf13.tf +++ b/examples/provider/provider-tf13.tf @@ -2,7 +2,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "2.13.0" + version = "2.14.0" } } }