Skip to content

Commit

Permalink
Prep 0.55.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonc committed May 9, 2024
1 parent 36bc849 commit 155ebe1
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,4 +1,5 @@
## v0.55.0

FEATURES:
* `r/tfe_team`: Add attributes `manage_teams`, `manage_organization_access`, and `access_secret_teams` to `organization_access` on `tfe_team` by @juliannatetreault [#1313](https://github.com/hashicorp/terraform-provider-tfe/pull/1313)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions website/docs/cdktf/csharp/index.html.markdown
Expand Up @@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand All @@ -90,7 +90,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u

```hcl
provider "tfe" {
version = "~> 0.54.0"
version = "~> 0.55.0"
...
}
```
Expand All @@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
token = var.token
version = "~> 0.54.0"
version = "~> 0.55.0"
}
# Create an organization
Expand Down
6 changes: 3 additions & 3 deletions website/docs/cdktf/go/index.html.markdown
Expand Up @@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand All @@ -90,7 +90,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u

```hcl
provider "tfe" {
version = "~> 0.54.0"
version = "~> 0.55.0"
...
}
```
Expand All @@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
token = var.token
version = "~> 0.54.0"
version = "~> 0.55.0"
}
# Create an organization
Expand Down
6 changes: 3 additions & 3 deletions website/docs/cdktf/java/index.html.markdown
Expand Up @@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand All @@ -90,7 +90,7 @@ The above snippet using `requiredProviders` is for Terraform 0.13+; if you are u

```hcl
provider "tfe" {
version = "~> 0.54.0"
version = "~> 0.55.0"
...
}
```
Expand All @@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to HCP Terraform `appTerraformIo`
token = var.token
version = "~> 0.54.0"
version = "~> 0.55.0"
}
# Create an organization
Expand Down
6 changes: 3 additions & 3 deletions website/docs/cdktf/python/index.html.markdown
Expand Up @@ -77,7 +77,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand All @@ -90,7 +90,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.54.0"
version = "~> 0.55.0"
...
}
```
Expand All @@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to Terraform Cloud `app.terraform.io`
token = var.token
version = "~> 0.54.0"
version = "~> 0.55.0"
}
# Create an organization
Expand Down
4 changes: 2 additions & 2 deletions website/docs/cdktf/typescript/index.html.markdown
Expand Up @@ -90,7 +90,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.54.0"
version = "~> 0.55.0"
...
}
```
Expand All @@ -103,7 +103,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname # Optional, defaults to Terraform Cloud `appTerraformIo`
token = var.token
version = "~> 0.54.0"
version = "~> 0.55.0"
}
# Create an organization
Expand Down
2 changes: 1 addition & 1 deletion website/docs/index.html.markdown
Expand Up @@ -75,7 +75,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.54.0"
version = "~> 0.55.0"
}
}
}
Expand Down

0 comments on commit 155ebe1

Please sign in to comment.