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"
}
}
}