From 66c5acffa6a714349b533c1408aed5de99f4e032 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Tue, 7 May 2019 18:29:46 +0000 Subject: [PATCH] v0.12.0-rc1 --- CHANGELOG.md | 22 ++++++++++++---------- version/version.go | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a09f93372..206e0c1b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,24 @@ -## 0.12.0-rc1 (Unreleased) +## 0.12.0-rc1 (May 7, 2019) + +The following are the significant changes since 0.12.0-beta2. NEW FEATURES: -* New function `strrev`, for reversing unicode strings. [GH-21091] +* New function `strrev`, for reversing unicode strings. ([#21091](https://github.com/hashicorp/terraform/issues/21091)) IMPROVEMENTS: -* backend/s3: Support for the new AWS region `ap-east-1` [GH-21117] -* backend/remote: Do not unlock a workspace after a failed state upload [GH-21148] -* command/init: Improve formatting of provider names during discovery [GH-21094] -* command/0.12upgrade: Upgrade indexing of splat syntax [GH-21103] -* command/0.12upgrade: Return error for invalid references (e.g. with initial digits) [GH-21103] +* backend/s3: Support for the new AWS region `ap-east-1` ([#21117](https://github.com/hashicorp/terraform/issues/21117)) +* backend/remote: Do not unlock a workspace after a failed state upload ([#21148](https://github.com/hashicorp/terraform/issues/21148)) +* command/init: Improve formatting of provider names during discovery ([#21094](https://github.com/hashicorp/terraform/issues/21094)) +* command/0.12upgrade: Upgrade indexing of splat syntax ([#21103](https://github.com/hashicorp/terraform/issues/21103)) +* command/0.12upgrade: Return error for invalid references (e.g. with initial digits) ([#21103](https://github.com/hashicorp/terraform/issues/21103)) BUG FIXES: -* core: Make sure UIInput keeps working after being canceled [GH-21139] -* lang/funcs: `flatten` fix handling of sets and tuples; return a tuple [GH-21171] -* states/statefile: properly upgrade dependency syntax [GH-21159] +* core: Make sure UIInput keeps working after being canceled ([#21139](https://github.com/hashicorp/terraform/issues/21139)) +* lang/funcs: `flatten` fix handling of sets and tuples; return a tuple ([#21171](https://github.com/hashicorp/terraform/issues/21171)) +* states/statefile: properly upgrade dependency syntax ([#21159](https://github.com/hashicorp/terraform/issues/21159)) ## 0.12.0-beta2 (Apr 18, 2019) diff --git a/version/version.go b/version/version.go index e6cc16506..5ca6ffbb3 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.12.0" // 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 = "rc1" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a