diff --git a/CHANGELOG.md b/CHANGELOG.md index edd8ac45970f..b11e2a6a856e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ -## 1.3.5 (Unreleased) +## 1.3.5 (November 17, 2022) BUG FIXES: -* Prevent crash while serializing the plan for an empty destroy operation [GH-32207] -* Allow a destroy plan to refresh instances while taking into account that some may no longer exist [GH-32208] -* Fix Terraform creating objects that should not exist in variables that specify default attributes in optional objects. [GH-32178] -* Fix several Terraform crashes that are caused by HCL creating objects that should not exist in variables that specify default attributes in optional objects within collections. [GH-32178] -* Fix inconsistent behaviour in empty vs null collections. [GH-32178] -* Prevent file uploads from creating unneeded temporary files when the payload size is known [GH-32206] -* Nested attributes marked sensitive by schema no longer reveal sub-attributes in the plan diff [GH-32004] -* Nested attributes now more consistently display when they become unknown or null values in the plan diff [GH-32004] +* Prevent crash while serializing the plan for an empty destroy operation ([#32207](https://github.com/hashicorp/terraform/issues/32207)) +* Allow a destroy plan to refresh instances while taking into account that some may no longer exist ([#32208](https://github.com/hashicorp/terraform/issues/32208)) +* Fix Terraform creating objects that should not exist in variables that specify default attributes in optional objects. ([#32178](https://github.com/hashicorp/terraform/issues/32178)) +* Fix several Terraform crashes that are caused by HCL creating objects that should not exist in variables that specify default attributes in optional objects within collections. ([#32178](https://github.com/hashicorp/terraform/issues/32178)) +* Fix inconsistent behaviour in empty vs null collections. ([#32178](https://github.com/hashicorp/terraform/issues/32178)) +* Prevent file uploads from creating unneeded temporary files when the payload size is known ([#32206](https://github.com/hashicorp/terraform/issues/32206)) +* Nested attributes marked sensitive by schema no longer reveal sub-attributes in the plan diff ([#32004](https://github.com/hashicorp/terraform/issues/32004)) +* Nested attributes now more consistently display when they become unknown or null values in the plan diff ([#32004](https://github.com/hashicorp/terraform/issues/32004)) * Sensitive values are now always displayed as `(sensitive value)` instead of sometimes as `(sensitive)` [GH32004] diff --git a/version/version.go b/version/version.go index a81a78e28eec..f34dd0695425 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.3.5" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. -var Prerelease = "dev" +var Prerelease = "" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a