Skip to content

Commit 83e452e

Browse files
authored
Merge pull request #2021 from hashicorp/changelog/zero.76
v0.76.0 release-prep: changelog, version updates
2 parents 641022f + 74d97de commit 83e452e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## v0.76.0
4+
35
FEATURES:
46
* **New Resource:** `tfe_project_policy_set_exclusion` for managing project level exclusions on policy sets. by @subhro-acharjee-1 [#1990](https://github.com/hashicorp/terraform-provider-tfe/pull/1990)
57
BUG FIXES:

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.75.0"
31+
version = "~> 0.76.0"
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.75.0"
47+
version = "~> 0.76.0"
4848
...
4949
}
5050
```

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.75.0
1+
0.76.0

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ automatically installed by `terraform init` in the future:
7676
terraform {
7777
required_providers {
7878
tfe = {
79-
version = "~> 0.75.0"
79+
version = "~> 0.76.0"
8080
}
8181
}
8282
}
@@ -89,7 +89,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8989

9090
```hcl
9191
provider "tfe" {
92-
version = "~> 0.75.0"
92+
version = "~> 0.76.0"
9393
...
9494
}
9595
```
@@ -102,7 +102,7 @@ For more information on provider installation and constraining provider versions
102102
provider "tfe" {
103103
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
104104
token = var.token
105-
version = "~> 0.75.0"
105+
version = "~> 0.76.0"
106106
}
107107
108108
# Create an organization

0 commit comments

Comments
 (0)