diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77dc2ccc..be7c15ec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,24 @@
+
+## [v2.20.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.19.0...v2.20.0) (2022-07-28)
+
+### Chore
+
+* Fix release targets in Makefile.
+
+### Feat
+
+* Implementation of `docker_tag` resource. ([#418](https://github.com/kreuzwerker/terraform-provider-docker/issues/418))
+* Implement support for insecure registries ([#414](https://github.com/kreuzwerker/terraform-provider-docker/issues/414))
+
+
## [v2.19.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.18.1...v2.19.0) (2022-07-15)
+### Chore
+
+* Prepare release v2.19.0
+
### Feat
* Add gpu flag to docker_container resource ([#405](https://github.com/kreuzwerker/terraform-provider-docker/issues/405))
diff --git a/README.md b/README.md
index 70922a16..2c549acd 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.19.0/docs) of the registry
+Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.20.0/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.19.0"
+ version = "2.20.0"
}
}
}
diff --git a/docs/index.md b/docs/index.md
index e00eb375..817e9568 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
- version = "2.19.0"
+ version = "2.20.0"
}
}
}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
- version = "~> 2.19.0"
+ version = "~> 2.20.0"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf
index 262b49af..07e3d6f6 100644
--- a/examples/provider/provider-tf12.tf
+++ b/examples/provider/provider-tf12.tf
@@ -1,5 +1,5 @@
provider "docker" {
- version = "~> 2.19.0"
+ version = "~> 2.20.0"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf
index 448b6e77..e795899a 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.19.0"
+ version = "2.20.0"
}
}
}