From 5df80afd40933499434bf6de3b205614edc287f4 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 10 Aug 2022 17:42:21 +0000 Subject: [PATCH] Release v1.2.7 --- CHANGELOG.md | 10 +++++----- version/version.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 339a475bec07..51ecf3590a97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ -## 1.2.7 (Unreleased) +## 1.2.7 (August 10, 2022) ENHANCEMENTS: -* config: Check for direct references to deprecated computed attributes. [GH-31576] +* config: Check for direct references to deprecated computed attributes. ([#31576](https://github.com/hashicorp/terraform/issues/31576)) BUG FIXES: -* config: Fix an crash if a submodule contains a resource whose implied provider local name contains invalid characters, by adding additional validation rules to turn it into a real error. [GH-31573] -* core: Fix some handling of provider schema attributes which use the newer "structural typing" mechanism introduced with protocol version 6, and therefore with the new Terraform Plugin Framework [GH-31532] -* command: Add missing output text for applyable refresh plans. [GH-31469] +* config: Fix an crash if a submodule contains a resource whose implied provider local name contains invalid characters, by adding additional validation rules to turn it into a real error. ([#31573](https://github.com/hashicorp/terraform/issues/31573)) +* core: Fix some handling of provider schema attributes which use the newer "structural typing" mechanism introduced with protocol version 6, and therefore with the new Terraform Plugin Framework ([#31532](https://github.com/hashicorp/terraform/issues/31532)) +* command: Add missing output text for applyable refresh plans. ([#31469](https://github.com/hashicorp/terraform/issues/31469)) ## 1.2.6 (July 27, 2022) diff --git a/version/version.go b/version/version.go index 0cf31e754d99..28a6507abe87 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.2.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