diff --git a/CHANGELOG.md b/CHANGELOG.md index 98214fce4e4a..2bd77c23be92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## 1.3.7 (Unreleased) +## 1.3.7 (January 04, 2023) BUG FIXES: -* Fix exact version constraint parsing for modules using prerelease versions [GH-32377] -* Prevent panic when a provider returns a null block value during refresh which is used as configuration via `ignore_changes` [GH-32428] +* Fix exact version constraint parsing for modules using prerelease versions ([#32377](https://github.com/hashicorp/terraform/issues/32377)) +* Prevent panic when a provider returns a null block value during refresh which is used as configuration via `ignore_changes` ([#32428](https://github.com/hashicorp/terraform/issues/32428)) ## 1.3.6 (November 30, 2022) diff --git a/version/version.go b/version/version.go index d97c67ab7d0f..c80ee44fd1b1 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.3.7" // 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