Skip to content

Commit

Permalink
chore: Prepare release v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Wentzel committed Mar 17, 2023
1 parent 586de75 commit 54685a5
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@

<a name="v3.0.2"></a>
## [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))


<a name="v3.0.1"></a>
## [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))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:


Expand All @@ -38,7 +38,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
version = "3.0.1"
version = "3.0.2"
}
}
}
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 = "3.0.1"
version = "3.0.2"
}
}
}
Expand All @@ -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"
}
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 = "~> 3.0.1"
version = "~> 3.0.2"
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 = "3.0.1"
version = "3.0.2"
}
}
}
Expand Down

0 comments on commit 54685a5

Please sign in to comment.