Skip to content

Commit

Permalink
chore: prepare release v2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Wentzel committed Jul 11, 2022
1 parent 401ff5e commit a85c9e7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2.18.0 (July 11, 2022)

IMPROVEMENTS
* add `runtime`, `stop_signal` and `stop_timeout` properties to the docker_container resource ([#364](https://github.com/kreuzwerker/terraform-provider-docker/issues/364))

BUG FIXES
* Various fixes to `docker_registry_image` to correctly handle build files and file permissions ([#398](https://github.com/kreuzwerker/terraform-provider-docker/pull/398))
* Fix `website-generation` Github-Action ([#399](https://github.com/kreuzwerker/terraform-provider-docker/pull/399))


## 2.17.0 (June 23, 2022)

IMPROVEMENTS
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.0/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.18.0/docs) of the registry
or use the following example:


Expand All @@ -47,7 +47,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
version = "2.17.0"
version = "2.18.0"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "2.17.0"
version = "2.18.0"
}
}
}
Expand All @@ -50,7 +50,7 @@ Terraform 0.12 and earlier:

```terraform
provider "docker" {
version = "~> 2.17.0"
version = "~> 2.18.0"
host = "unix:///var/run/docker.sock"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider-tf12.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "docker" {
version = "~> 2.17.0"
version = "~> 2.18.0"
host = "unix:///var/run/docker.sock"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider-tf13.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "2.17.0"
version = "2.18.0"
}
}
}
Expand Down

0 comments on commit a85c9e7

Please sign in to comment.