v0.11.3
This commit is contained in:
parent
c9481ab012
commit
3802b14260
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,17 +1,17 @@
|
||||||
## 0.11.3 (Unreleased)
|
## 0.11.3 (January 31, 2018)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
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:
|
BUG FIXES:
|
||||||
|
|
||||||
* core: fix crash when an error is encountered during refresh [GH-17076]
|
* 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 [GH-17134]
|
* 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 [GH-17133]
|
* 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 [GH-17086]
|
* 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` [GH-17147]
|
* provisioner/chef: fix crash when validating `use_policyfile` ([#17147](https://github.com/hashicorp/terraform/issues/17147))
|
||||||
|
|
||||||
## 0.11.2 (January 9, 2018)
|
## 0.11.2 (January 9, 2018)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ const Version = "0.11.3"
|
||||||
// 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