diff --git a/CHANGELOG.md b/CHANGELOG.md index 26bc945ed..36e057bcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ -## Unreleased +## v0.60.1 + BUG FIXES: * `r/tfe_policy`: enforcement level can be updated on OPA policies by @glennsarti [#1521](https://github.com/hashicorp/terraform-provider-tfe/pull/1521) diff --git a/README.md b/README.md index 9c07f388a..541686851 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical terraform { required_providers { tfe = { - version = "~> 0.60.0" + version = "~> 0.60.1" } } } @@ -45,7 +45,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.60.0" + version = "~> 0.60.1" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 3c79f8052..1b939255d 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.60.0" + version = "~> 0.60.1" } } } @@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.60.0" + version = "~> 0.60.1" ... } ``` @@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions provider "tfe" { hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io` token = var.token - version = "~> 0.60.0" + version = "~> 0.60.1" } # Create an organization