From 129f62ae6f340ad8cf006a2f4d25d391d35a027b Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 1 Jun 2022 16:11:56 +0000 Subject: [PATCH] Release v1.2.2 --- CHANGELOG.md | 10 +++++----- version/version.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24b23ba03ad3..a535aae38dd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ -## 1.2.2 (Unreleased) +## 1.2.2 (June 01, 2022) ENHANCEMENTS: -* Invalid `-var` arguments with spaces between the name and value now have an improved error message [GH-30985] +* Invalid `-var` arguments with spaces between the name and value now have an improved error message ([#30985](https://github.com/hashicorp/terraform/issues/30985)) BUG FIXES: -* Terraform now hides invalid input values for sensitive root module variables when generating error diagnostics [GH-30552] -* Fixed crash on CLI autocomplete [GH-31160] -* The "Configuration contains unknown values" error message now includes attribute paths [GH-3111] +* Terraform now hides invalid input values for sensitive root module variables when generating error diagnostics ([#30552](https://github.com/hashicorp/terraform/issues/30552)) +* Fixed crash on CLI autocomplete ([#31160](https://github.com/hashicorp/terraform/issues/31160)) +* The "Configuration contains unknown values" error message now includes attribute paths ([#3111](https://github.com/hashicorp/terraform/issues/3111)) ## 1.2.1 (May 23, 2022) diff --git a/version/version.go b/version/version.go index 03b2a5102938..b40a33fdb964 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.2.2" // 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