Skip to content

Commit 9a7b831

Browse files
committed
release: Prepare v0.5.0 release
1 parent ac291b7 commit 9a7b831

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0]
10+
### Added
11+
- Add support for `account_recovery_mechanisms`
12+
13+
### Removed
14+
- BREAKING CHANGE: Drop support for Terraform AWS Provider version 2.x
15+
916
## [0.4.1] - 2021-02-08
1017
### Fixed
1118
- Fixed examples to use new variable `user_device_tracking` instead of `device_only_remembered_on_user_prompt`
@@ -73,9 +80,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7380
- Add unit tests for basic use cases.
7481

7582
<!-- markdown-link-check-disable -->
76-
[Unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.1...HEAD
77-
[0.4.1]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.0...v0.4.1
83+
[Unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.5.0...HEAD
84+
[0.5.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.1...v0.5.0
7885
<!-- markdown-link-check-enable -->
86+
[0.4.1]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.0...v0.4.1
7987
[0.4.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.3.0...v0.4.0
8088
[0.3.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.2.0...v0.3.0
8189
[0.2.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.1.4...v0.2.0

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ A [Terraform] module for deploying and managing
1313
on [Amazon Web Services (AWS)][AWS].
1414

1515
*This module supports Terraform v0.14, v0.13 as well as v0.12.20 and above
16-
and is compatible with the terraform AWS provider v3 as well as v2.54 and above.*
16+
and is compatible with the terraform AWS provider v3.19 and above.*
17+
18+
The last version supporting terraform AWS provider v2.x is v0.4.1.
1719

1820
**We, [Mineiros][mineiros-library], offer [professional support][mineiros-pricing] for this module.**
1921

@@ -65,7 +67,7 @@ Most basic usage just setting required arguments:
6567
```hcl
6668
module "terraform-aws-cognito-user-pool" {
6769
source = "mineiros-io/cognito-user-pool/aws"
68-
version = "~> 0.4.0"
70+
version = "~> 0.5.0"
6971
7072
name = "application-userpool"
7173
}
@@ -592,7 +594,7 @@ Copyright &copy; 2020 [Mineiros GmbH][homepage]
592594

593595
[build-status]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/actions
594596

595-
[badge-tf-aws]: https://img.shields.io/badge/AWS-3%20and%202.54+-F8991D.svg?logo=terraform
597+
[badge-tf-aws]: https://img.shields.io/badge/AWS-3.19+-F8991D.svg?logo=terraform
596598
[releases-aws-provider]: https://github.com/terraform-providers/terraform-provider-aws/releases
597599

598600
[releases-github]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/releases

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ shows how to deploy a Cognito User Pool with custom settings.
1212
```hcl
1313
module "cognito_user_pool" {
1414
source = "mineiros-io/cognito-user-pool/aws"
15-
version = "~> 0.4.0"
15+
version = "~> 0.5.0"
1616
1717
name = "complete-example-userpool"
1818

examples/user-pool-with-default-settings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defined in the [variables.tf] file of this module.
1313
```hcl
1414
module "cognito_user_pool" {
1515
source = "mineiros-io/cognito-user-pool/aws"
16-
version = "~> 0.4.0"
16+
version = "~> 0.5.0"
1717
1818
name = "example-userpool"
1919
}

examples/user-pool-with-default-settings/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ provider "aws" {
1818

1919
module "cognito_user_pool" {
2020
source = "mineiros-io/cognito-user-pool/aws"
21-
version = "~> 0.4.0"
21+
version = "~> 0.5.0"
2222

2323
name = "example-userpool"
2424
}

0 commit comments

Comments
 (0)