diff --git a/CHANGELOG.md b/CHANGELOG.md index c2f95ad94..ec1afc197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.42.0 (August 24, 2022) + +IMPROVEMENTS: + +* provider: Bump version of Go to 1.18.5 in `.go-version` ([GH-374](https://github.com/hashicorp/terraform-provider-hcp/pull/374)) +*provider: Bump `google.golang.org/grpc` from 1.48.0 to 1.49.0 ([GH-379](https://github.com/hashicorp/terraform-provider-hcp/pull/379)) + +FIXES: + +* all: Prevents the app from crashing when a `*url.Error` is received while retrying HTTP requests. ([GH-376](https://github.com/hashicorp/terraform-provider-hcp/pull/376)) + ## 0.41.0 (August 18, 2022) IMPROVEMENTS: diff --git a/docs/index.md b/docs/index.md index 82080f190..95ca9d769 100644 --- a/docs/index.md +++ b/docs/index.md @@ -38,7 +38,7 @@ terraform { required_providers { hcp = { source = "hashicorp/hcp" - version = "~> 0.41.0" + version = "~> 0.42.0" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 0b50a5420..a94c325a3 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -3,7 +3,7 @@ terraform { required_providers { hcp = { source = "hashicorp/hcp" - version = "~> 0.41.0" + version = "~> 0.42.0" } } }