From 5cb459638721c943ae80b2720f84147cabf23586 Mon Sep 17 00:00:00 2001 From: tf-release-bot Date: Thu, 31 Oct 2019 19:16:37 +0000 Subject: [PATCH] v0.12.13 --- CHANGELOG.md | 12 ++++++------ version/version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a349173f..18cfdc8f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.12.13 (Unreleased) +## 0.12.13 (October 31, 2019) UPGRADE NOTES: @@ -10,11 +10,11 @@ UPGRADE NOTES: BUG FIXES: -* config: Fix regression where self wasn't properly evaluated when using for_each [GH-23215] -* config: dotfiles are no longer excluded when copying existing modules; previously, any dotfile/dir was excluded in this copy, but this change makes the local copy behavior match go-getter behavior [GH-22946] -* core: Ensure create_before_destroy ordering is enforced with dependencies between modules [GH-22937] -* core: Fix some destroy-time cycles due to unnecessary edges in the graph, and remove unused resource nodes [GH-22976] -* backend/remote: Correctly handle remotely-stored variables that are marked as "HCL" when running local-only operations like `terraform import`. Previously they would produce a type mismatch error, due to misinterpreting them as literal strings. [GH-23229] +* config: Fix regression where self wasn't properly evaluated when using for_each ([#23215](https://github.com/hashicorp/terraform/issues/23215)) +* config: dotfiles are no longer excluded when copying existing modules; previously, any dotfile/dir was excluded in this copy, but this change makes the local copy behavior match go-getter behavior ([#22946](https://github.com/hashicorp/terraform/issues/22946)) +* core: Ensure create_before_destroy ordering is enforced with dependencies between modules ([#22937](https://github.com/hashicorp/terraform/issues/22937)) +* core: Fix some destroy-time cycles due to unnecessary edges in the graph, and remove unused resource nodes ([#22976](https://github.com/hashicorp/terraform/issues/22976)) +* backend/remote: Correctly handle remotely-stored variables that are marked as "HCL" when running local-only operations like `terraform import`. Previously they would produce a type mismatch error, due to misinterpreting them as literal strings. ([#23229](https://github.com/hashicorp/terraform/issues/23229)) ## 0.12.12 (October 18, 2019) diff --git a/version/version.go b/version/version.go index 170dd3368..238e2aed3 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.12.13" // 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