From 8712b03839d1f63c0bfe11cf5f08e94014aeb85c Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Tue, 19 Sep 2017 13:56:27 +0000 Subject: [PATCH] v0.10.6 --- CHANGELOG.md | 4 ++-- terraform/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eef2b9151..44be0e0ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.6 (Unreleased) +## 0.10.6 (September 19, 2017) UPGRADE NOTES: @@ -9,7 +9,7 @@ UPGRADE NOTES: IMPROVEMENTS: -* cli: `terraform import` now accepts an option `-allow-missing-config` that overrides the default requirement that a configuration block must already be present for the resource being imported. [GH-15876] +* cli: `terraform import` now accepts an option `-allow-missing-config` that overrides the default requirement that a configuration block must already be present for the resource being imported. ([#15876](https://github.com/hashicorp/terraform/issues/15876)) ## 0.10.5 (September 14, 2017) diff --git a/terraform/version.go b/terraform/version.go index c38d6cf60..bcfdd5c49 100644 --- a/terraform/version.go +++ b/terraform/version.go @@ -12,7 +12,7 @@ const Version = "0.10.6" // 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 VersionPrerelease = "dev" +var VersionPrerelease = "" // SemVersion is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a