v0.11.5
This commit is contained in:
parent
4cdb6dff0b
commit
342c529aa5
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,14 +1,14 @@
|
||||||
## 0.11.5 (Unreleased)
|
## 0.11.5 (March 21, 2018)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
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:
|
BUG FIXES:
|
||||||
|
|
||||||
* core: Fix the timeout handling for provisioners [GH-17646]
|
* 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 [GH-17645]
|
* 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 [GH-17636]
|
* 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)
|
## 0.11.4 (March 15, 2018)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ const Version = "0.11.5"
|
||||||
// A pre-release marker for the version. If this is "" (empty string)
|
// 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
|
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||||
// such as "dev" (in development), "beta", "rc1", etc.
|
// such as "dev" (in development), "beta", "rc1", etc.
|
||||||
var Prerelease = "dev"
|
var Prerelease = ""
|
||||||
|
|
||||||
// SemVer is an instance of version.Version. This has the secondary
|
// SemVer is an instance of version.Version. This has the secondary
|
||||||
// benefit of verifying during tests and init time that our version is a
|
// benefit of verifying during tests and init time that our version is a
|
||||||
|
|
Loading…
Reference in New Issue