From fce896d6df314a2c77a9daecb5c61d8beea157db Mon Sep 17 00:00:00 2001 From: hashicorp-ci Date: Wed, 17 Feb 2021 18:05:15 +0000 Subject: [PATCH] Release v0.14.7 --- CHANGELOG.md | 12 ++++++------ version/version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 540e4447df..ae3e432d33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ -## 0.14.7 (Unreleased) +## 0.14.7 (February 17, 2021) ENHANCEMENTS: -* cli: Emit an "already installed" event when a provider is found already installed [GH-27722] -* provisioner/remote-exec: Can now run in a mode that expects the remote system to be running Windows and excuting commands using the Windows command interpreter, rather than a Unix-style shell. Specify the `target_platform` as `"windows"` in the `connection` block. [GH-26865] +* cli: Emit an "already installed" event when a provider is found already installed ([#27722](https://github.com/hashicorp/terraform/issues/27722)) +* provisioner/remote-exec: Can now run in a mode that expects the remote system to be running Windows and excuting commands using the Windows command interpreter, rather than a Unix-style shell. Specify the `target_platform` as `"windows"` in the `connection` block. ([#26865](https://github.com/hashicorp/terraform/issues/26865)) BUG FIXES: -* cli: Fix `show -json` not outputting the full module tree when some child modules have no resources [GH-27352] -* cli: Fix excessively slow rendering of very large multi-line string outputs [GH-27746] -* cli: Fix missing provider requirements in JSON plan when specified using `required_providers` instead of provider config [GH-27697] +* cli: Fix `show -json` not outputting the full module tree when some child modules have no resources ([#27352](https://github.com/hashicorp/terraform/issues/27352)) +* cli: Fix excessively slow rendering of very large multi-line string outputs ([#27746](https://github.com/hashicorp/terraform/issues/27746)) +* cli: Fix missing provider requirements in JSON plan when specified using `required_providers` instead of provider config ([#27697](https://github.com/hashicorp/terraform/issues/27697)) ## 0.14.6 (February 04, 2021) diff --git a/version/version.go b/version/version.go index 6f10c86173..b137ae45cc 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.14.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