diff --git a/CHANGELOG.md b/CHANGELOG.md index 69d52eb52..250e439d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,15 @@ # Unreleased +# v1.102.0 + +## Enhancements +* Adds the `Size` field to `StateVersion` by @Shaunakone [#1280](https://github.com/hashicorp/go-tfe/pull/1280) + # v1.101.0 ## Enhancements * Adds the `SpeculativeEnabled` field to the `StackCreateOptions` and `StackUpdateOptions` structs by @arunatibm [1279](https://github.com/hashicorp/go-tfe/pull/1279) * Adds `Name` and `Provider` fields to `RegistryModuleCreateWithVCSConnectionOptions` to support explicit module naming for monorepos with non-standard repository names, by @jillirami [#1277](https://github.com/hashicorp/go-tfe/pull/1277) -* Adds the `Size` field to `StateVersion` by @Shaunakone [#1280](https://github.com/hashicorp/go-tfe/pull/1280) - # v1.100.0 diff --git a/helper_test.go b/helper_test.go index 4f424cd85..5b1328da8 100644 --- a/helper_test.go +++ b/helper_test.go @@ -967,6 +967,7 @@ func createPolicySetParameter(t *testing.T, client *Client, ps *PolicySet) (*Pol } ctx := context.Background() + v, err := client.PolicySetParameters.Create(ctx, ps.ID, PolicySetParameterCreateOptions{ Key: String(randomKeyValue(t)), Value: String(randomKeyValue(t)),