From 3802b14260603f90c7a1faf55994dcc8933e2069 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 31 Jan 2018 20:48:39 +0000 Subject: [PATCH] v0.11.3 --- CHANGELOG.md | 14 +++++++------- version/version.go | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0831f5b70..52e8e13e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,17 @@ -## 0.11.3 (Unreleased) +## 0.11.3 (January 31, 2018) IMPROVEMENTS: -* backend/s3: add support for the eu-west-3 region [GH-17193] +* backend/s3: add support for the eu-west-3 region ([#17193](https://github.com/hashicorp/terraform/issues/17193)) BUG FIXES: -* core: fix crash when an error is encountered during refresh [GH-17076] -* config: fixed crash when module source is invalid [GH-17134] -* config: allow the count pseudo-attribute of a resource to be interpolated into `provisioner` and `connection` blocks without errors [GH-17133] -* backend/s3: allow the workspace name to be a prefix of workspace_key_prefix [GH-17086] -* provisioner/chef: fix crash when validating `use_policyfile` [GH-17147] +* core: fix crash when an error is encountered during refresh ([#17076](https://github.com/hashicorp/terraform/issues/17076)) +* config: fixed crash when module source is invalid ([#17134](https://github.com/hashicorp/terraform/issues/17134)) +* config: allow the count pseudo-attribute of a resource to be interpolated into `provisioner` and `connection` blocks without errors ([#17133](https://github.com/hashicorp/terraform/issues/17133)) +* backend/s3: allow the workspace name to be a prefix of workspace_key_prefix ([#17086](https://github.com/hashicorp/terraform/issues/17086)) +* provisioner/chef: fix crash when validating `use_policyfile` ([#17147](https://github.com/hashicorp/terraform/issues/17147)) ## 0.11.2 (January 9, 2018) diff --git a/version/version.go b/version/version.go index dd0ad5173..8cfa82d69 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ const Version = "0.11.3" // 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