diff --git a/.changes/0.11.0.md b/.changes/0.11.0.md new file mode 100644 index 0000000..eb4c95f --- /dev/null +++ b/.changes/0.11.0.md @@ -0,0 +1,14 @@ +## 0.11.0 (August 03, 2023) + +NOTES: + +* This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). Any consumers building on earlier Go versions may experience errors. ([#117](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/117)) + +ENHANCEMENTS: + +* int64validator: Added `equalToProductOf` validator ([#129](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/129)) + +BUG FIXES: + +* stringvalidator: Removed double quoting in `Description` returned from `NoneOf`, `NoneOfCaseInsensitive`, `OneOf` and `OneOfCaseInsensitive` validators ([#152](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/152)) + diff --git a/.changes/unreleased/BUG FIXES-20230801-104745.yaml b/.changes/unreleased/BUG FIXES-20230801-104745.yaml deleted file mode 100644 index 37971d8..0000000 --- a/.changes/unreleased/BUG FIXES-20230801-104745.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'stringvalidator: Removed double quoting in `Description` returned from `NoneOf`, - `NoneOfCaseInsensitive`, `OneOf` and `OneOfCaseInsensitive` validators' -time: 2023-08-01T10:47:45.629204+01:00 -custom: - Issue: "152" diff --git a/.changes/unreleased/ENHANCEMENTS-20230502-112440.yaml b/.changes/unreleased/ENHANCEMENTS-20230502-112440.yaml deleted file mode 100644 index 9581e98..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20230502-112440.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: ENHANCEMENTS -body: 'int64validator: Added `equalToProductOf` validator' -time: 2023-05-02T11:24:40.147812-04:00 -custom: - Issue: "129" diff --git a/.changes/unreleased/NOTES-20230303-093836.yaml b/.changes/unreleased/NOTES-20230303-093836.yaml deleted file mode 100644 index af0484e..0000000 --- a/.changes/unreleased/NOTES-20230303-093836.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: NOTES -body: This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). - Any consumers building on earlier Go versions may experience errors. -time: 2023-03-03T09:38:36.179756Z -custom: - Issue: "117" diff --git a/CHANGELOG.md b/CHANGELOG.md index dfa4636..03435c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.11.0 (August 03, 2023) + +NOTES: + +* This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). Any consumers building on earlier Go versions may experience errors. ([#117](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/117)) + +ENHANCEMENTS: + +* int64validator: Added `equalToProductOf` validator ([#129](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/129)) + +BUG FIXES: + +* stringvalidator: Removed double quoting in `Description` returned from `NoneOf`, `NoneOfCaseInsensitive`, `OneOf` and `OneOfCaseInsensitive` validators ([#152](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/152)) + ## 0.10.0 (February 08, 2023) ENHANCEMENTS: