Skip to content

Commit

Permalink
Merge pull request #577 from hashicorp/bump-release-version
Browse files Browse the repository at this point in the history
bump 0.35.0 version
  • Loading branch information
brandonc committed Jul 27, 2022
2 parents 05c632f + b40ce5a commit bdb7444
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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"
}
}
}
Expand All @@ -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"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Expand Up @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.34.0"
version = "~> 0.35.0"
}
}
}
Expand All @@ -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"
...
}
```
Expand All @@ -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
Expand Down

0 comments on commit bdb7444

Please sign in to comment.