From 22c490336c7b3d4e0793cd1ac14e9d29e4a7cc9c Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Wed, 26 May 2021 09:05:51 +0200 Subject: [PATCH] chore: prepare release v2.12.2 --- CHANGELOG.md | 4 ++++ CONTRIBUTING.md | 4 ++-- README.md | 2 +- docs/index.md | 6 +++--- examples/provider/provider-ssh.tf | 2 +- examples/provider/provider-tf12.tf | 2 +- examples/provider/provider-tf13.tf | 2 +- 7 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77184b8a..9c8044f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.12.2 (May 26, 2021) + +DOCS +- update documentation and website for the release which was forgotten in `v2.12.1` ## 2.12.1 (May 26, 2021) BUG FIXES diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 01d02e10..ac9d4a60 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -181,6 +181,6 @@ 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` -- Replace all occurences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.0`, execpt in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*` +- Replace all occurences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, execpt in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*` - regenerate the website: `make website-generation` -- run `git tag v2.12.0 && git push origin master v2.12.0` \ No newline at end of file +- 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 5d08af32..d74f9b53 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ terraform { # since new versions are released frequently docker = { source = "kreuzwerker/docker" - version = "2.12.0" + version = "2.12.1" } } } diff --git a/docs/index.md b/docs/index.md index 05c5663e..ed71b20b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "2.12.0" + version = "2.12.2" } } } @@ -50,7 +50,7 @@ Terraform 0.12 and earlier: ```terraform provider "docker" { - version = "~> 2.12.0" + version = "~> 2.12.2" host = "unix:///var/run/docker.sock" } @@ -75,7 +75,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "2.12.0" + version = "2.12.2" } } } diff --git a/examples/provider/provider-ssh.tf b/examples/provider/provider-ssh.tf index cc13f68a..0c200581 100644 --- a/examples/provider/provider-ssh.tf +++ b/examples/provider/provider-ssh.tf @@ -2,7 +2,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "2.12.0" + version = "2.12.2" } } } diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf index 9ba15c32..d47c6bce 100644 --- a/examples/provider/provider-tf12.tf +++ b/examples/provider/provider-tf12.tf @@ -1,5 +1,5 @@ provider "docker" { - version = "~> 2.12.0" + version = "~> 2.12.2" host = "unix:///var/run/docker.sock" } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index cc13f68a..0c200581 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.12.0" + version = "2.12.2" } } }