Skip to content

Commit 1a8058a

Browse files
committed
Update latest version to v0.62.0
1 parent 11b74d2 commit 1a8058a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
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.62.0
4+
35
FEATURES:
46
* `r/tfe_variable_set`: Add `parent_project_id` attribute, by @mkam [#1522](https://github.com/hashicorp/terraform-provider-tfe/pull/1522)
57

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2828
terraform {
2929
required_providers {
3030
tfe = {
31-
version = "~> 0.61.0"
31+
version = "~> 0.62.0"
3232
}
3333
}
3434
}
@@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4444

4545
```hcl
4646
provider "tfe" {
47-
version = "~> 0.61.0"
47+
version = "~> 0.62.0"
4848
...
4949
}
5050
```

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

0 commit comments

Comments
 (0)