From 7966d3f57fa6d875a9eee162bd4e77bdb89c8967 Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Wed, 11 Aug 2021 10:11:53 +0200 Subject: [PATCH] chore: prepare release v2.15.0 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++-- CONTRIBUTING.md | 3 ++- README.md | 4 ++-- docs/index.md | 4 ++-- examples/provider/provider-tf12.tf | 2 +- examples/provider/provider-tf13.tf | 2 +- 6 files changed, 34 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caa04a6a..e73552e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 452b01fe..171f7b53 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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` \ No newline at end of file diff --git a/README.md b/README.md index bab4e1da..69f0ac9c 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.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" } } } diff --git a/docs/index.md b/docs/index.md index 44db1a34..59f119dd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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" } diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf index 2e85abb1..4fe02f4c 100644 --- a/examples/provider/provider-tf12.tf +++ b/examples/provider/provider-tf12.tf @@ -1,5 +1,5 @@ provider "docker" { - version = "~> 2.14.0" + version = "~> 2.15.0" host = "unix:///var/run/docker.sock" } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index 6fd6ed4b..6628b36a 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.14.0" + version = "2.15.0" } } }