Skip to content

Commit dd31612

Browse files
JunkernMartin Wentzel
andauthored
chore: Prepare release 3.1.0 (#685)
Co-authored-by: Martin Wentzel <junker@monoceres.uberspace.de>
1 parent f043898 commit dd31612

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

CHANGELOG.md

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

2+
<a name="v3.1.0"></a>
3+
## [v3.1.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.2...v3.1.0) (2025-04-13)
4+
5+
### Chore
6+
7+
* update Go version to 1.22 for consistency across workflows, jo… ([#613](https://github.com/kreuzwerker/terraform-provider-docker/issues/613))
8+
9+
### Feat
10+
11+
* support setting cpu shares ([#575](https://github.com/kreuzwerker/terraform-provider-docker/issues/575))
12+
13+
### Fix
14+
15+
* Use build_args everywhere and update documentation ([#681](https://github.com/kreuzwerker/terraform-provider-docker/issues/681))
16+
* Compress build context before sending it to Docker ([#461](https://github.com/kreuzwerker/terraform-provider-docker/issues/461))
17+
* Set correct default network driver and fix a test ([#677](https://github.com/kreuzwerker/terraform-provider-docker/issues/677))
18+
19+
### Typo
20+
21+
* s/presend/present/ ([#606](https://github.com/kreuzwerker/terraform-provider-docker/issues/606))
22+
23+
224
<a name="v3.0.2"></a>
325
## [v3.0.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.1...v3.0.2) (2023-03-17)
426

27+
### Chore
28+
29+
* Prepare release v3.0.2
30+
531
### Docs
632

733
* correct spelling of "networks_advanced" ([#517](https://github.com/kreuzwerker/terraform-provider-docker/issues/517))

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.0.2/docs) of the registry
29+
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.1.0/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.0.2"
41+
version = "3.1.0"
4242
}
4343
}
4444
}

docs/index.md

Lines changed: 2 additions & 2 deletions
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.0.2"
28+
version = "3.1.0"
2929
}
3030
}
3131
}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
5050

5151
```terraform
5252
provider "docker" {
53-
version = "~> 3.0.2"
53+
version = "~> 3.1.0"
5454
host = "unix:///var/run/docker.sock"
5555
}
5656

examples/provider/provider-tf12.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
provider "docker" {
2-
version = "~> 3.0.2"
2+
version = "~> 3.1.0"
33
host = "unix:///var/run/docker.sock"
44
}
55

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.0.2"
5+
version = "3.1.0"
66
}
77
}
88
}

0 commit comments

Comments
 (0)