diff --git a/CHANGELOG.md b/CHANGELOG.md index e8c398159299..f8ee904ed740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## 1.3.6 (Unreleased) +## 1.3.6 (November 30, 2022) BUG FIXES: -* Terraform could crash if an orphaned resource instance was deleted externally and had condition checks in the configuration [GH-32246] -* Module output changes were being removed and re-added to the stored plan, impacting performance with large numbers of outputs [GH-32307] +* Terraform could crash if an orphaned resource instance was deleted externally and had condition checks in the configuration ([#32246](https://github.com/hashicorp/terraform/issues/32246)) +* Module output changes were being removed and re-added to the stored plan, impacting performance with large numbers of outputs ([#32307](https://github.com/hashicorp/terraform/issues/32307)) ## 1.3.5 (November 17, 2022) diff --git a/version/version.go b/version/version.go index 153740988720..a174e7d780a3 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.3.6" // 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