From ce5b918ed044d2060d5e3967bbd7a70d5a15443f Mon Sep 17 00:00:00 2001 From: Chris Trombley Date: Thu, 13 Jun 2024 14:29:42 -0700 Subject: [PATCH] chore: bump versions in readme & docs --- 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 dd66eaa1e..9fe37ec0c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical terraform { required_providers { tfe = { - version = "~> 0.55.0" + version = "~> 0.56.0" } } } @@ -45,7 +45,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.53.0" + version = "~> 0.56.0" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 282c4cbb5..a69008c85 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.55.0" + version = "~> 0.56.0" } } } @@ -88,7 +88,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.53.0" + version = "~> 0.56.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.53.0" + version = "~> 0.56.0" } # Create an organization