From 9a30749b89d4e88ed31a13d727996ec9bbfeeca2 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 15 Jun 2022 17:34:28 +0000 Subject: [PATCH] Release v1.2.3 --- CHANGELOG.md | 10 +++++----- version/version.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a85a9c91ed8..1dfb0b3cf8f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.2.3 (Unreleased) +## 1.2.3 (June 15, 2022) UPGRADE NOTES: @@ -14,10 +14,10 @@ UPGRADE NOTES: BUG FIXES: -* Missing check for error diagnostics in GetProviderSchema could result in panic [GH-31184] -* Module registries returning X-Terraform-Get locations with no URL would error with "no getter available for X-Terraform-Get source protocol" [GH-31237] -* Fix crash from concurrent operation on shared set of resource instance dependencies [GH-31246] -* backend/cos: `tencentcloud-terraform-lock` tag was not removed in all cases [GH-31223] +* Missing check for error diagnostics in GetProviderSchema could result in panic ([#31184](https://github.com/hashicorp/terraform/issues/31184)) +* Module registries returning X-Terraform-Get locations with no URL would error with "no getter available for X-Terraform-Get source protocol" ([#31237](https://github.com/hashicorp/terraform/issues/31237)) +* Fix crash from concurrent operation on shared set of resource instance dependencies ([#31246](https://github.com/hashicorp/terraform/issues/31246)) +* backend/cos: `tencentcloud-terraform-lock` tag was not removed in all cases ([#31223](https://github.com/hashicorp/terraform/issues/31223)) ## 1.2.2 (June 01, 2022) diff --git a/version/version.go b/version/version.go index 6a276ac2556f..006e103bef01 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.2.3" // 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