From 342c529aa58d824f2f2ed1f6ec6118059876aad0 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 21 Mar 2018 21:05:10 +0000 Subject: [PATCH] v0.11.5 --- CHANGELOG.md | 10 +++++----- version/version.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecfb849f7..94f0b5c53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ -## 0.11.5 (Unreleased) +## 0.11.5 (March 21, 2018) IMPROVEMENTS: -* provisioner/chef: Allow specifying a channel [GH-17355] +* provisioner/chef: Allow specifying a channel ([#17355](https://github.com/hashicorp/terraform/issues/17355)) BUG FIXES: -* core: Fix the timeout handling for provisioners [GH-17646] -* core: Ensure that state is unlocked after running console, import, graph or push commands [GH-17645] -* core: Don't open multiple file descriptors for local state files, which would cause reading the state to fail on Windows [GH-17636] +* core: Fix the timeout handling for provisioners ([#17646](https://github.com/hashicorp/terraform/issues/17646)) +* core: Ensure that state is unlocked after running console, import, graph or push commands ([#17645](https://github.com/hashicorp/terraform/issues/17645)) +* core: Don't open multiple file descriptors for local state files, which would cause reading the state to fail on Windows [[#17636](https://github.com/hashicorp/terraform/issues/17636)] ## 0.11.4 (March 15, 2018) diff --git a/version/version.go b/version/version.go index 88a63a13d..8d9562e1c 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ const Version = "0.11.5" // 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