From d12152f730b3436d06b87536bd4f6a62f0f49dcf Mon Sep 17 00:00:00 2001 From: tf-release-bot Date: Wed, 22 Jan 2020 21:51:40 +0000 Subject: [PATCH] v0.12.20 --- CHANGELOG.md | 12 ++++++------ version/version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 634a883fe..65b18ab95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ -## 0.12.20 (Unreleased) +## 0.12.20 (January 22, 2020) ENHANCEMENTS: -* config: New built-in functions `try` and `can` are intended to ease working with data structures whose shape isn't known statically. [GH-23794] -* config: New, optional syntax for [`required_providers`](https://www.terraform.io/docs/configuration/terraform.html#specifying-required-provider-versions) setting in `terraform` blocks. This is not intended for general use yet but will support upcoming enhancements. [GH-23843] +* config: New built-in functions `try` and `can` are intended to ease working with data structures whose shape isn't known statically. ([#23794](https://github.com/hashicorp/terraform/issues/23794)) +* config: New, optional syntax for [`required_providers`](https://www.terraform.io/docs/configuration/terraform.html#specifying-required-provider-versions) setting in `terraform` blocks. This is not intended for general use yet but will support upcoming enhancements. [[#23843](https://github.com/hashicorp/terraform/issues/23843)] BUG FIXES: -* command/show: Fix an issue with show and aliased providers [GH-23848] -* core: Always clean up empty resources before empty modules [GH-23822] -* internal/modsdir/manifest: Fix CLI issue with Windows machines [GH-23865] +* command/show: Fix an issue with show and aliased providers ([#23848](https://github.com/hashicorp/terraform/issues/23848)) +* core: Always clean up empty resources before empty modules ([#23822](https://github.com/hashicorp/terraform/issues/23822)) +* internal/modsdir/manifest: Fix CLI issue with Windows machines ([#23865](https://github.com/hashicorp/terraform/issues/23865)) EXPERIMENTS: diff --git a/version/version.go b/version/version.go index 62f7a2822..217e0f9f8 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.12.20" // 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