From 30637c9c901e23c8bda6ded7a714b663c663a3a9 Mon Sep 17 00:00:00 2001 From: tf-release-bot Date: Thu, 14 Nov 2019 23:04:48 +0000 Subject: [PATCH] v0.12.15 --- CHANGELOG.md | 4 ++-- version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa55be6b29..b9d68ee106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ -## 0.12.15 (Unreleased) +## 0.12.15 (November 14, 2019) BUG FIXES: -* various commands: Fixed errant error "Initialization required. Please see the error message above." [GH-23383] +* various commands: Fixed errant error "Initialization required. Please see the error message above." ([#23383](https://github.com/hashicorp/terraform/issues/23383)) The error was produced on some of Terraform's subcommands (in particular `terraform show` and `terraform output`, but possibly others) if a warning was emitted during configuration loading and if a `backend` block was present. This issue has been present since v0.12.0 for any configuration that produces configuration-related deprecation warnings, but it became more visible in v0.12.14 due to the addition of several more situations that could produce warnings. diff --git a/version/version.go b/version/version.go index 888c1167ee..5109fce54e 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.12.15" // 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