From b40ce5a96623e612ad3d7dae1182a8b7bd1098c8 Mon Sep 17 00:00:00 2001 From: uturunku1 Date: Wed, 27 Jul 2022 14:09:09 -0700 Subject: [PATCH] release changes --- README.md | 4 ++-- website/docs/index.html.markdown | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 587061eb9..f3cabd6cb 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Declare the provider in your configuration and `terraform init` will automatical terraform { required_providers { tfe = { - version = "~> 0.34.0" + version = "~> 0.35.0" } } } @@ -46,7 +46,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.34.0" + version = "~> 0.35.0" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 354884962..05740ee9a 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future: terraform { required_providers { tfe = { - version = "~> 0.34.0" + version = "~> 0.35.0" } } } @@ -87,7 +87,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.34.0" + version = "~> 0.35.0" ... } ``` @@ -100,7 +100,7 @@ For more information on provider installation and constraining provider versions provider "tfe" { hostname = var.hostname token = var.token - version = "~> 0.34.0" + version = "~> 0.35.0" } # Create an organization