From 3489fbbafc7b23c70c98fb3dc1bdec6f7a36b45a Mon Sep 17 00:00:00 2001 From: Martin Wentzel Date: Wed, 2 Nov 2022 11:57:57 +0100 Subject: [PATCH] chore: Prepare release v2.23.0 --- CHANGELOG.md | 21 ++++++++++++++++++++- README.md | 4 ++-- docs/index.md | 4 ++-- examples/provider/provider-tf12.tf | 2 +- examples/provider/provider-tf13.tf | 2 +- 5 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 777c1ac85..e8110d54c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ + +## [v2.23.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.22.0...v2.23.0) (2022-11-02) + +### Feat + +* wait container healthy state ([#467](https://github.com/kreuzwerker/terraform-provider-docker/issues/467)) +* add docker logs data source ([#471](https://github.com/kreuzwerker/terraform-provider-docker/issues/471)) + +### Fix + +* Update shasum of busybox:1.35.0 tag in test. +* Update shasum of busybox:1.35.0 tag +* Correct provider name to match the public registry ([#462](https://github.com/kreuzwerker/terraform-provider-docker/issues/462)) + + -## [v2.22.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.21.0...v2.22.0) (2022-09-13) +## [v2.22.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.21.0...v2.22.0) (2022-09-20) + +### Chore + +* Prepare release v2.22.0 ### Feat diff --git a/README.md b/README.md index 689412a65..80ada1413 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ $ make build ## Example usage -Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.22.0/docs) of the registry +Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.23.0/docs) of the registry or use the following example: @@ -47,7 +47,7 @@ terraform { # since new versions are released frequently docker = { source = "kreuzwerker/docker" - version = "2.22.0" + version = "2.23.0" } } } diff --git a/docs/index.md b/docs/index.md index 3b21fa375..80b3078ed 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "2.22.0" + version = "2.23.0" } } } @@ -50,7 +50,7 @@ Terraform 0.12 and earlier: ```terraform provider "docker" { - version = "~> 2.22.0" + version = "~> 2.23.0" host = "unix:///var/run/docker.sock" } diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf index 2941f8854..d0332b66f 100644 --- a/examples/provider/provider-tf12.tf +++ b/examples/provider/provider-tf12.tf @@ -1,5 +1,5 @@ provider "docker" { - version = "~> 2.22.0" + version = "~> 2.23.0" host = "unix:///var/run/docker.sock" } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index 75e655268..b1e29e34d 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.22.0" + version = "2.23.0" } } }