Skip to content

Commit

Permalink
Bump for 0.33.0 release (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
annawinkler committed Jul 8, 2022
1 parent 1bb6ade commit 02c31ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.33.0 (Unreleased)
## 0.33.0 (July 8th, 2022)

FEATURES:
* **New Resource**: `tfe_workspace_variable_set` ([#537](https://github.com/hashicorp/terraform-provider-tfe/pull/537)) adds the ability to assign a variable set to a workspace in a single, flexible resource.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.30.2"
version = "~> 0.33.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.30.2"
version = "~> 0.33.0"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.30.2"
version = "~> 0.33.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.30.2"
version = "~> 0.33.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.30.2"
version = "~> 0.33.0"
}
# Create an organization
Expand Down

0 comments on commit 02c31ba

Please sign in to comment.