v0.11.7
This commit is contained in:
parent
0ad9d7b392
commit
41e50bd32a
|
@ -1,19 +1,19 @@
|
|||
## 0.11.7 (Unreleased)
|
||||
## 0.11.7 (April 10, 2018)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* core: Fix handling of interpolated counts when applying a destroy plan [GH-17824]
|
||||
* core: Fix handling of interpolated counts when applying a destroy plan ([#17824](https://github.com/hashicorp/terraform/issues/17824))
|
||||
|
||||
PROVIDER SDK CHANGES (not user-facing):
|
||||
|
||||
* helper/schema: Invoking `ForceNew` on a key being removed from config during
|
||||
diff customization now correctly exposes that key as being removed in the
|
||||
updated diff. This prevents diff mismatches under certain circumstances.
|
||||
[GH-17811]
|
||||
([#17811](https://github.com/hashicorp/terraform/issues/17811))
|
||||
* helper/schema: Invoking `ForceNew` during diff customization on its own no
|
||||
longer writes any new data to the diff. This prevents writing of new nil to
|
||||
zero value diffs for sub-fields of complex lists and sets where a diff did not
|
||||
exist before. [GH-17811]
|
||||
exist before. ([#17811](https://github.com/hashicorp/terraform/issues/17811))
|
||||
|
||||
## 0.11.6 (April 5, 2018)
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ const Version = "0.11.7"
|
|||
// 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
|
||||
|
|
Loading…
Reference in New Issue