From 2f20f8c3ce8290fcd03d96e69c7bc6338897a479 Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 13 Jun 2025 23:46:48 +0200 Subject: [PATCH] chore: Prepare release v3.6.2 (#750) --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 4 ++-- docs/index.md | 2 +- examples/provider/provider-tf13.tf | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a33514..0cb7cc6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,25 @@ + +## [v3.6.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.1...v3.6.2) (2025-06-13) + +### Feat + +* Allow digest in image name ([#744](https://github.com/kreuzwerker/terraform-provider-docker/issues/744)) + +### Fix + +* Remove wrong buildkit version assignment ([#747](https://github.com/kreuzwerker/terraform-provider-docker/issues/747)) +* Reading non existant volume should recreate ([#749](https://github.com/kreuzwerker/terraform-provider-docker/issues/749)) +* Typo in cgroup_parent handling ([#746](https://github.com/kreuzwerker/terraform-provider-docker/issues/746)) + + ## [v3.6.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.0...v3.6.1) (2025-06-05) +### Chore + +* Prepare release v3.6.1 ([#743](https://github.com/kreuzwerker/terraform-provider-docker/issues/743)) + ### Feat * allow to set the cgroup parent for container ([#609](https://github.com/kreuzwerker/terraform-provider-docker/issues/609)) diff --git a/README.md b/README.md index e423bffd..f9c40a54 100644 --- a/README.md +++ b/README.md @@ -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.6.1/docs) of the registry +Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.6.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.6.1" + version = "3.6.2" } } } diff --git a/docs/index.md b/docs/index.md index b0cfdbad..d30a269d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "3.6.1" + version = "3.6.2" } } } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index bfd5dadd..b1ebba22 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 = "3.6.1" + version = "3.6.2" } } }