diff --git a/CHANGELOG.md b/CHANGELOG.md index e6822245b..98f06acaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v.0.64.0 FEATURES: diff --git a/README.md b/README.md index 1c335e4b7..df26208d2 100644 --- a/README.md +++ b/README.md @@ -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" } } } @@ -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" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 8de2e44a2..5dc9a59a2 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future: terraform { required_providers { tfe = { - version = "~> 0.63.0" + version = "~> 0.64.0" } } } @@ -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" ... } ``` @@ -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