Skip to content

Commit 88c7362

Browse files
authored
Merge pull request #1545 from hashicorp/0.61.0-release
v0.61.0 CHANGELOG
2 parents d7817d7 + c0a34f6 commit 88c7362

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## v0.61.0
4+
35
DEPRECATIONS:
46
* `r/tfe_workspace`: `global_remote_state` and `remote_state_consumer_ids` have been **deprecated** and moved to `tfe_workspace_settings` (see ENHANCEMENTS below for more details)
57

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<img alt="Terraform" src="https://www.datocms-assets.com/2885/1629941242-logo-terraform-main.svg" width="600px">
22

3-
43
# HCP Terraform and Terraform Enterprise Provider
54

65
The official Terraform provider for [HCP Terraform and Terraform Enterprise](https://www.hashicorp.com/products/terraform).
@@ -29,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2928
terraform {
3029
required_providers {
3130
tfe = {
32-
version = "~> 0.60.1"
31+
version = "~> 0.61.0"
3332
}
3433
}
3534
}
@@ -45,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4544

4645
```hcl
4746
provider "tfe" {
48-
version = "~> 0.60.1"
47+
version = "~> 0.61.0"
4948
...
5049
}
5150
```

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.1"
78+
version = "~> 0.61.0"
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.1"
91+
version = "~> 0.61.0"
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.1"
104+
version = "~> 0.61.0"
105105
}
106106
107107
# Create an organization

0 commit comments

Comments
 (0)