Skip to content

Commit

Permalink
Merge pull request hashicorp#1607 from hashicorp/release-0.64.0
Browse files Browse the repository at this point in the history
Prep release for v0.64.0
  • Loading branch information
Uk1288 authored Feb 12, 2025
2 parents 806d1b1 + 3264ceb commit e0e0eb4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v.0.64.0

FEATURES:

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.63.0"
version = "~> 0.64.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.63.0"
version = "~> 0.64.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.63.0"
version = "~> 0.64.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.63.0"
version = "~> 0.64.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.63.0"
version = "~> 0.64.0"
}
# Create an organization
Expand Down

0 comments on commit e0e0eb4

Please sign in to comment.