Skip to content

Commit 6c6cc3d

Browse files
committed
chore: prepare v0.8.0 release
1 parent b8bf147 commit 6c6cc3d

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.0]
11+
12+
### BREAKING
13+
14+
- Minimum version of the aws provider has been bumped to `3.32.0` to enable
15+
support for `token_validity_units`
16+
17+
### Added
18+
19+
- Add support `token_validity_units`
20+
1021
## [0.7.0]
1122

1223
### Added
@@ -123,11 +134,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123134

124135
<!-- markdown-link-check-disable -->
125136

126-
[unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.7.0...HEAD
127-
[0.7.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.6.0...v0.7.0
137+
[unreleased]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.8.0...HEAD
138+
[0.8.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.7.0...v0.8.0
128139

129140
<!-- markdown-link-check-enable -->
130141

142+
[0.7.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.6.0...v0.7.0
131143
[0.6.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.5.0...v0.6.0
132144
[0.5.0]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.1...v0.5.0
133145
[0.4.1]: https://github.com/mineiros-io/terraform-aws-cognito-user-pool/compare/v0.4.0...v0.4.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Most basic usage just setting required arguments:
6767
```hcl
6868
module "terraform-aws-cognito-user-pool" {
6969
source = "mineiros-io/cognito-user-pool/aws"
70-
version = "~> 0.7.0"
70+
version = "~> 0.8.0"
7171
7272
name = "application-userpool"
7373
}

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.7.0"
15+
version = "~> 0.8.0"
1616
1717
name = "complete-example-userpool"
1818

examples/complete/main.tf

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

1818
module "cognito_user_pool" {
1919
source = "mineiros-io/cognito-user-pool/aws"
20-
version = "~> 0.7.0"
20+
version = "~> 0.8.0"
2121

2222
name = "complete-example-userpool"
2323

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.7.0"
16+
version = "~> 0.8.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.7.0"
21+
version = "~> 0.8.0"
2222

2323
name = "example-userpool"
2424
}

0 commit comments

Comments
 (0)