From 23810ed3a7f77d2cf6577d294146b2829d7566a0 Mon Sep 17 00:00:00 2001 From: Soren Martius Date: Sun, 25 Jul 2021 23:58:21 +0100 Subject: [PATCH] chore: prepare v0.7.0 release --- CHANGELOG.md | 7 +++++-- README.md | 2 +- examples/complete/README.md | 2 +- examples/complete/main.tf | 2 +- examples/user-pool-with-default-settings/README.md | 2 +- examples/user-pool-with-default-settings/main.tf | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe46616..ae4c7da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] + ### Added - Add support for Terraform `v1.x` @@ -121,11 +123,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.5.1...HEAD -[0.5.1]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.5.0...v0.5.1 +[unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.6.0...v0.7.0 +[0.6.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.3.0...v0.4.0 diff --git a/README.md b/README.md index cca176c..95c8e75 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Most basic usage just setting required arguments: ```hcl module "terraform-aws-cognito-user-pool" { source = "mineiros-io/cognito-user-pool/aws" - version = "~> 0.6.0" + version = "~> 0.7.0" name = "application-userpool" } diff --git a/examples/complete/README.md b/examples/complete/README.md index 856a629..8269922 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -12,7 +12,7 @@ shows how to deploy a Cognito User Pool with custom settings. ```hcl module "cognito_user_pool" { source = "mineiros-io/cognito-user-pool/aws" - version = "~> 0.6.0" + version = "~> 0.7.0" name = "complete-example-userpool" diff --git a/examples/complete/main.tf b/examples/complete/main.tf index f6dd9f2..ca1d0af 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -17,7 +17,7 @@ provider "aws" { module "cognito_user_pool" { source = "mineiros-io/cognito-user-pool/aws" - version = "~> 0.6.0" + version = "~> 0.7.0" name = "complete-example-userpool" diff --git a/examples/user-pool-with-default-settings/README.md b/examples/user-pool-with-default-settings/README.md index a9be2a4..82cbcf8 100644 --- a/examples/user-pool-with-default-settings/README.md +++ b/examples/user-pool-with-default-settings/README.md @@ -13,7 +13,7 @@ defined in the [variables.tf] file of this module. ```hcl module "cognito_user_pool" { source = "mineiros-io/cognito-user-pool/aws" - version = "~> 0.6.0" + version = "~> 0.7.0" name = "example-userpool" } diff --git a/examples/user-pool-with-default-settings/main.tf b/examples/user-pool-with-default-settings/main.tf index 5ee6927..5846abf 100644 --- a/examples/user-pool-with-default-settings/main.tf +++ b/examples/user-pool-with-default-settings/main.tf @@ -18,7 +18,7 @@ provider "aws" { module "cognito_user_pool" { source = "mineiros-io/cognito-user-pool/aws" - version = "~> 0.6.0" + version = "~> 0.7.0" name = "example-userpool" }