Skip to content

Commit

Permalink
Merge pull request #1551 from hashicorp/sebasslash/v0.62.0-changelog
Browse files Browse the repository at this point in the history
v0.62.0 changelog
  • Loading branch information
brandonc authored Dec 19, 2024
2 parents 11b74d2 + 1a8058a commit 8125e71
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v0.62.0

FEATURES:
* `r/tfe_variable_set`: Add `parent_project_id` attribute, by @mkam [#1522](https://github.com/hashicorp/terraform-provider-tfe/pull/1522)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.61.0"
version = "~> 0.62.0"
}
}
}
Expand All @@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.61.0"
version = "~> 0.62.0"
...
}
```
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.61.0"
version = "~> 0.62.0"
}
}
}
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.61.0"
version = "~> 0.62.0"
...
}
```
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.61.0"
version = "~> 0.62.0"
}
# Create an organization
Expand Down

0 comments on commit 8125e71

Please sign in to comment.