Skip to content

Commit

Permalink
chore: Prepare release v2.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Wentzel committed Aug 31, 2022
1 parent 2017ec8 commit 3ff136e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@

<a name="v2.20.3"></a>
## [v2.20.3](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.20.2...v2.20.3) (2022-08-29)

### Fix

* Docker Registry Image data source use HEAD request to query image digest ([#433](https://github.com/kreuzwerker/terraform-provider-docker/issues/433))
* Adding Support for Windows Paths in Bash ([#438](https://github.com/kreuzwerker/terraform-provider-docker/issues/438))


<a name="v2.20.2"></a>
## [v2.20.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.20.1...v2.20.2) (2022-08-10)

### Chore

* Prepare release v2.20.2

### Fix

* Check the operating system for determining the default Docker socket ([#427](https://github.com/kreuzwerker/terraform-provider-docker/issues/427))
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.20.2/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.20.3/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.20.2"
version = "2.20.3"
}
}
}
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.20.2"
version = "2.20.3"
}
}
}
Expand All @@ -50,7 +50,7 @@ Terraform 0.12 and earlier:

```terraform
provider "docker" {
version = "~> 2.20.2"
version = "~> 2.20.3"
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.20.2"
version = "~> 2.20.3"
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.20.2"
version = "2.20.3"
}
}
}
Expand Down

0 comments on commit 3ff136e

Please sign in to comment.