diff --git a/CHANGELOG.md b/CHANGELOG.md
index 952dee851..37dbb7136 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,23 @@
+
+## [v3.0.2](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.1...v3.0.2) (2023-03-17)
+
+### Docs
+
+* correct spelling of "networks_advanced" ([#517](https://github.com/kreuzwerker/terraform-provider-docker/issues/517))
+
+### Fix
+
+* Implement proxy support. ([#529](https://github.com/kreuzwerker/terraform-provider-docker/issues/529))
+
+
## [v3.0.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.0.0...v3.0.1) (2023-01-13)
+### Chore
+
+* Prepare release v3.0.1
+
### Fix
* Access health of container correctly. ([#506](https://github.com/kreuzwerker/terraform-provider-docker/issues/506))
diff --git a/README.md b/README.md
index 182c60c1c..1f21b5155 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
## Example usage
-Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.0.1/docs) of the registry
+Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.0.2/docs) of the registry
or use the following example:
@@ -38,7 +38,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
- version = "3.0.1"
+ version = "3.0.2"
}
}
}
diff --git a/docs/index.md b/docs/index.md
index ef5c5d2b3..bef2113ae 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
- version = "3.0.1"
+ version = "3.0.2"
}
}
}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
- version = "~> 3.0.1"
+ version = "~> 3.0.2"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf
index 00165fd1d..bba089189 100644
--- a/examples/provider/provider-tf12.tf
+++ b/examples/provider/provider-tf12.tf
@@ -1,5 +1,5 @@
provider "docker" {
- version = "~> 3.0.1"
+ version = "~> 3.0.2"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf
index ac6d648d3..fc79b9151 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 = "3.0.1"
+ version = "3.0.2"
}
}
}