diff --git a/CHANGELOG.md b/CHANGELOG.md
index a5617aa4..20f98fdf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,22 @@
+
+## [v2.20.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.20.1...v2.20.2) (2022-08-10)
+
+### Fix
+
+* Check the operating system for determining the default Docker socket ([#427](https://github.com/kreuzwerker/terraform-provider-docker/issues/427))
+
+### Reverts
+
+* fix(deps): update module github.com/golangci/golangci-lint to v1.48.0 ([#423](https://github.com/kreuzwerker/terraform-provider-docker/issues/423))
+
+
## [v2.20.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.20.0...v2.20.1) (2022-08-10)
### Chore
+* Prepare release v2.20.1
* Reduce time to setup AccTests ([#430](https://github.com/kreuzwerker/terraform-provider-docker/issues/430))
### Docs
diff --git a/README.md b/README.md
index 3439e895..67a42bf0 100644
--- a/README.md
+++ b/README.md
@@ -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.1/docs) of the registry
+Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.20.2/docs) of the registry
or use the following example:
@@ -47,7 +47,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
- version = "2.20.1"
+ version = "2.20.2"
}
}
}
diff --git a/docs/index.md b/docs/index.md
index 4b3db906..4eff3873 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
- version = "2.20.1"
+ version = "2.20.2"
}
}
}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
- version = "~> 2.20.1"
+ version = "~> 2.20.2"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf
index 8846a018..002f8c52 100644
--- a/examples/provider/provider-tf12.tf
+++ b/examples/provider/provider-tf12.tf
@@ -1,5 +1,5 @@
provider "docker" {
- version = "~> 2.20.1"
+ version = "~> 2.20.2"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf
index e45ad722..7678a84e 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 = "2.20.1"
+ version = "2.20.2"
}
}
}