Skip to content

Commit

Permalink
Merge pull request #1526 from hashicorp/brandonc/prep_v0.60.1
Browse files Browse the repository at this point in the history
Prepare for release v0.60.1
  • Loading branch information
brandonc authored Nov 14, 2024
2 parents 25d648d + 8ff5f42 commit fd5149f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand All @@ -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"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.60.0"
version = "~> 0.60.1"
}
}
}
Expand All @@ -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"
...
}
```
Expand All @@ -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
Expand Down

0 comments on commit fd5149f

Please sign in to comment.