Skip to content

Commit fd5149f

Browse files
authored
Merge pull request #1526 from hashicorp/brandonc/prep_v0.60.1
Prepare for release v0.60.1
2 parents 25d648d + 8ff5f42 commit fd5149f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
## Unreleased
1+
## v0.60.1
2+
23
BUG FIXES:
34
* `r/tfe_policy`: enforcement level can be updated on OPA policies by @glennsarti [#1521](https://github.com/hashicorp/terraform-provider-tfe/pull/1521)
45

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2929
terraform {
3030
required_providers {
3131
tfe = {
32-
version = "~> 0.60.0"
32+
version = "~> 0.60.1"
3333
}
3434
}
3535
}
@@ -45,7 +45,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4545

4646
```hcl
4747
provider "tfe" {
48-
version = "~> 0.60.0"
48+
version = "~> 0.60.1"
4949
...
5050
}
5151
```

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
7575
terraform {
7676
required_providers {
7777
tfe = {
78-
version = "~> 0.60.0"
78+
version = "~> 0.60.1"
7979
}
8080
}
8181
}
@@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8888

8989
```hcl
9090
provider "tfe" {
91-
version = "~> 0.60.0"
91+
version = "~> 0.60.1"
9292
...
9393
}
9494
```
@@ -101,7 +101,7 @@ For more information on provider installation and constraining provider versions
101101
provider "tfe" {
102102
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
103103
token = var.token
104-
version = "~> 0.60.0"
104+
version = "~> 0.60.1"
105105
}
106106
107107
# Create an organization

0 commit comments

Comments
 (0)