Skip to content

Commit 3f1d671

Browse files
authored
Merge pull request #1768 from hashicorp/0point67point1-changelog
Prep for v0.67.1 patch release
2 parents d9538e8 + 33f91ef commit 3f1d671

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## Unreleased
22

3-
ENHANCEMENTS:
3+
## v0.67.1
4+
5+
BUG FIXES:
46
* `r/tfe_workspace` update `tags` to be a computed attribute, by @Maed223 [#1767](https://github.com/hashicorp/terraform-provider-tfe/pull/1767)
57

68
## v0.67.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2828
terraform {
2929
required_providers {
3030
tfe = {
31-
version = "~> 0.67.0"
31+
version = "~> 0.67.1"
3232
}
3333
}
3434
}
@@ -44,7 +44,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4444

4545
```hcl
4646
provider "tfe" {
47-
version = "~> 0.67.0"
47+
version = "~> 0.67.1"
4848
...
4949
}
5050
```

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.67.0
1+
0.67.1

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
7474
terraform {
7575
required_providers {
7676
tfe = {
77-
version = "~> 0.67.0"
77+
version = "~> 0.67.1"
7878
}
7979
}
8080
}
@@ -87,7 +87,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8787

8888
```hcl
8989
provider "tfe" {
90-
version = "~> 0.67.0"
90+
version = "~> 0.67.1"
9191
...
9292
}
9393
```
@@ -100,7 +100,7 @@ For more information on provider installation and constraining provider versions
100100
provider "tfe" {
101101
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
102102
token = var.token
103-
version = "~> 0.67.0"
103+
version = "~> 0.67.1"
104104
}
105105
106106
# Create an organization

0 commit comments

Comments
 (0)