From 243951c70a07a8495212ea75501cc02f8d286c3e Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 19 Jul 2017 14:05:43 -0700 Subject: [PATCH] v0.10.0-rc1 --- CHANGELOG.md | 12 ++++++------ terraform/version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfffed993..a6a1896ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ -## 0.10.0-rc1 (Unreleased) +## 0.10.0-rc1 (July 19, 2017) BUG FIXES: -* Don't show a message about the path to the state file if the state is remote [GH-15435] -* Fix crash when `terraform graph` is run with no configuration [GH-15588] -* Handle correctly the `.exe` suffix on locally-compiled provider plugins on Windows systems. [GH-15587] +* Don't show a message about the path to the state file if the state is remote ([#15435](https://github.com/hashicorp/terraform/issues/15435)) +* Fix crash when `terraform graph` is run with no configuration ([#15588](https://github.com/hashicorp/terraform/issues/15588)) +* Handle correctly the `.exe` suffix on locally-compiled provider plugins on Windows systems. ([#15587](https://github.com/hashicorp/terraform/issues/15587)) INTERNAL CHANGES: -* helper/schema: Actively disallow reserved field names in schema [GH-15522] -* helper/schema: Force field names to be alphanum lowercase + underscores [GH-15562] +* helper/schema: Actively disallow reserved field names in schema ([#15522](https://github.com/hashicorp/terraform/issues/15522)) +* helper/schema: Force field names to be alphanum lowercase + underscores ([#15562](https://github.com/hashicorp/terraform/issues/15562)) ## 0.10.0-beta2 (July 6, 2017) diff --git a/terraform/version.go b/terraform/version.go index d61b11ea2..58cbf266e 100644 --- a/terraform/version.go +++ b/terraform/version.go @@ -7,7 +7,7 @@ import ( ) // The main version number that is being run at the moment. -const Version = "0.10.0" +const Version = "0.10.0-rc1" // 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