From 43ef4748aaa2773b5465263e5aa4447d6ea5b95e Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 4 Jan 2023 15:19:39 +0000 Subject: [PATCH] Release v1.3.7 --- CHANGELOG.md | 6 +++--- version/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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