From 61dccf0057565036ae97498c58def9abda6eab78 Mon Sep 17 00:00:00 2001 From: Mark DeCrane Date: Thu, 14 Mar 2024 11:29:15 -0400 Subject: [PATCH] Updating changelog, readme, docs for 0.53.0 release --- CHANGELOG.md | 2 ++ README.md | 5 ++--- website/docs/index.html.markdown | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4813d6bd3..d926f8156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## UNRELEASED +## v0.53.0 + FEATURES: * `r/tfe_workspace`: Add `ignore_additional_tag_names` which explicitly ignores `tag_names` _not_ defined by config so they will not be overwritten by the configured tags, by @brandonc and @mbillow [1254](https://github.com/hashicorp/terraform-provider-tfe/pull/1254) diff --git a/README.md b/README.md index 62f1af9ab..46be170f6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ Terraform - # Terraform Cloud/Enterprise Provider The official Terraform provider for [Terraform Cloud/Enterprise](https://www.hashicorp.com/products/terraform). @@ -29,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical terraform { required_providers { tfe = { - version = "~> 0.51.1" + version = "~> 0.53.0" } } } @@ -45,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.51.1" + version = "~> 0.53.0" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index dd9dfbf81..51add7bd3 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future: terraform { required_providers { tfe = { - version = "~> 0.52.0" + version = "~> 0.53.0" } } } @@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.52.0" + version = "~> 0.53.0" ... } ``` @@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions provider "tfe" { hostname = var.hostname # Optional, defaults to Terraform Cloud `app.terraform.io` token = var.token - version = "~> 0.52.0" + version = "~> 0.53.0" } # Create an organization