chore: prepare release v2.15.0

This commit is contained in:
Manuel Vogel 2021-08-11 10:11:53 +02:00
parent 5665da93bc
commit 7966d3f57f
No known key found for this signature in database
GPG key ID: 24E54F214569A8A5
6 changed files with 34 additions and 9 deletions

View file

@ -1,4 +1,28 @@
## 2.14.0 (JuLy 09, 2021)
## 2.15.0 (JuLy 09, 2021)
IMPROVEMENTS
* add container storage opts ([#258](https://github.com/kreuzwerker/terraform-provider-docker/issues/258))
BUG FIXES
* add current timestamp for file upload to container ([#259](https://github.com/kreuzwerker/terraform-provider-docker/issues/259))
DOCS
* docs: corrects authentication misspell ([#264](https://github.com/kreuzwerker/terraform-provider-docker/issues/264))
* docs(readme): add badges
CHORE
* ci: adapt acc test docker version ([#266](https://github.com/kreuzwerker/terraform-provider-docker/issues/266))
* deps: update alpine docker tag to v3.14.1 ([#263](https://github.com/kreuzwerker/terraform-provider-docker/issues/263))
* re go gets terraform-plugin-docs
* deps: update module github.com/docker/docker to v20.10.8 ([#256](https://github.com/kreuzwerker/terraform-provider-docker/issues/256))
* deps: update module github.com/docker/cli to v20.10.8 ([#255](https://github.com/kreuzwerker/terraform-provider-docker/issues/255))
* deps: update nginx:1.21.1 docker digest to 8f33576 ([#252](https://github.com/kreuzwerker/terraform-provider-docker/issues/252))
* deps: update nginx:1.21.1 docker digest to 11d4e59 ([#251](https://github.com/kreuzwerker/terraform-provider-docker/issues/251))
* deps: update actions/stale action to v4 ([#250](https://github.com/kreuzwerker/terraform-provider-docker/issues/250))
* deps: update nginx:1.21.1 docker digest to 353c20f ([#248](https://github.com/kreuzwerker/terraform-provider-docker/issues/248))
## 2.14.0 (July 09, 2021)
IMPROVEMENTS
- support terraform v1 ([#242](https://github.com/kreuzwerker/terraform-provider-docker/issues/242))
@ -18,8 +42,8 @@ CHORE
- deps: update nginx docker tag to v1.21.1 ([#243](https://github.com/kreuzwerker/terraform-provider-docker/issues/243))
- deps: update tj-actions/verify-changed-files action to v7 ([#237](https://github.com/kreuzwerker/terraform-provider-docker/issues/237))
- deps: update nginx:1.21.0 docker digest to d1b8ff2 ([#232](https://github.com/kreuzwerker/terraform-provider-docker/issues/232))
## 2.13.0 (June 22, 2021)
## 2.13.0 (June 22, 2021)
IMPROVEMENTS
- service image name fix and new data-source `docker_image` ([#212](https://github.com/kreuzwerker/terraform-provider-docker/issues/212))

View file

@ -184,6 +184,7 @@ pull request against the master branch.
## Releasing
- Update the `CHANGELOG.md` by hand by [comparing](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.11.0...master) with the latest release, e.g. `v2.11.0` or via the `cli` with the command `git log v2.11.0..HEAD --oneline`
- Replace all occurrences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, except in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*`
- Replace all occurrences of the latest release, e.g. `2.11.0` with the new one, e.g. `2.12.2`, except in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*`
- regenerate the website: `make website-generation`
- commit the changes: `chore: prepare release v2.12.0`
- run `git tag v2.12.2 && git push origin master v2.12.2`

View file

@ -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.14.0/docs) of the registry
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.15.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.14.0"
version = "2.15.0"
}
}
}

View file

@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "2.14.0"
version = "2.15.0"
}
}
}
@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
version = "~> 2.14.0"
version = "~> 2.15.0"
host = "unix:///var/run/docker.sock"
}

View file

@ -1,5 +1,5 @@
provider "docker" {
version = "~> 2.14.0"
version = "~> 2.15.0"
host = "unix:///var/run/docker.sock"
}

View file

@ -2,7 +2,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "2.14.0"
version = "2.15.0"
}
}
}