Skip to content

Commit

Permalink
chore: Prepare release v2.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Wentzel committed Sep 5, 2022
1 parent f34bec7 commit 0d82189
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 7 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@

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

### Docs

* Fix docker config example.

### Feat

* Add image_id attribute to docker_image resource. ([#450](https://github.com/kreuzwerker/terraform-provider-docker/issues/450))
* Update used goversion to 1.18. ([#449](https://github.com/kreuzwerker/terraform-provider-docker/issues/449))

### Fix

* Replace deprecated .latest attribute with new image_id. ([#453](https://github.com/kreuzwerker/terraform-provider-docker/issues/453))
* Remove reading part of docker_tag resource. ([#448](https://github.com/kreuzwerker/terraform-provider-docker/issues/448))
* Fix repo_digest value for DockerImageDatasource test.


<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)
## [v2.20.3](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.20.2...v2.20.3) (2022-08-31)

### Chore

* Prepare release v2.20.3

### Fix

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.3/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.21.0/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.3"
version = "2.21.0"
}
}
}
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.3"
version = "2.21.0"
}
}
}
Expand All @@ -50,7 +50,7 @@ Terraform 0.12 and earlier:

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

0 comments on commit 0d82189

Please sign in to comment.