diff --git a/CHANGELOG.md b/CHANGELOG.md index 945488850..e20bafb14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.17.0 (Unreleased) + +IMPROVEMENTS: + +* provider: Bump `hcp-sdk-go` dependency ([#199](https://github.com/hashicorp/terraform-provider-hcp/pull/199)) + +FEATURES: + +* **New data source** `hcp_packer_image` ([#194](https://github.com/hashicorp/terraform-provider-hcp/pull/194)) +* **New data source** `hcp_packer_iteration` ([#194](https://github.com/hashicorp/terraform-provider-hcp/pull/194)) + ## 0.16.0 (September 15, 2021) IMPROVEMENTS: diff --git a/docs/index.md b/docs/index.md index f68a9d1a6..f3090f50a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -34,7 +34,7 @@ terraform { required_providers { hcp = { source = "hashicorp/hcp" - version = "~> 0.16.0" + version = "~> 0.17.0" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index e9c4ba994..5f8119079 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -3,7 +3,7 @@ terraform { required_providers { hcp = { source = "hashicorp/hcp" - version = "~> 0.16.0" + version = "~> 0.17.0" } } }