Skip to content

Commit 2f20f8c

Browse files
authored
chore: Prepare release v3.6.2 (#750)
1 parent ba02ff2 commit 2f20f8c

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
11

2+
<a name="v3.6.2"></a>
3+
## [v3.6.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.1...v3.6.2) (2025-06-13)
4+
5+
### Feat
6+
7+
* Allow digest in image name ([#744](https://github.com/kreuzwerker/terraform-provider-docker/issues/744))
8+
9+
### Fix
10+
11+
* Remove wrong buildkit version assignment ([#747](https://github.com/kreuzwerker/terraform-provider-docker/issues/747))
12+
* Reading non existant volume should recreate ([#749](https://github.com/kreuzwerker/terraform-provider-docker/issues/749))
13+
* Typo in cgroup_parent handling ([#746](https://github.com/kreuzwerker/terraform-provider-docker/issues/746))
14+
15+
216
<a name="v3.6.1"></a>
317
## [v3.6.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.0...v3.6.1) (2025-06-05)
418

19+
### Chore
20+
21+
* Prepare release v3.6.1 ([#743](https://github.com/kreuzwerker/terraform-provider-docker/issues/743))
22+
523
### Feat
624

725
* allow to set the cgroup parent for container ([#609](https://github.com/kreuzwerker/terraform-provider-docker/issues/609))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
2626

2727
## Example usage
2828

29-
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.6.1/docs) of the registry
29+
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs) of the registry
3030
or use the following example:
3131

3232

@@ -38,7 +38,7 @@ terraform {
3838
# since new versions are released frequently
3939
docker = {
4040
source = "kreuzwerker/docker"
41-
version = "3.6.1"
41+
version = "3.6.2"
4242
}
4343
}
4444
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
docker = {
2727
source = "kreuzwerker/docker"
28-
version = "3.6.1"
28+
version = "3.6.2"
2929
}
3030
}
3131
}

examples/provider/provider-tf13.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
docker = {
44
source = "kreuzwerker/docker"
5-
version = "3.6.1"
5+
version = "3.6.2"
66
}
77
}
88
}

0 commit comments

Comments
 (0)