v0.10.6
This commit is contained in:
parent
72631b34bd
commit
8712b03839
|
@ -1,4 +1,4 @@
|
||||||
## 0.10.6 (Unreleased)
|
## 0.10.6 (September 19, 2017)
|
||||||
|
|
||||||
UPGRADE NOTES:
|
UPGRADE NOTES:
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ UPGRADE NOTES:
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
* cli: `terraform import` now accepts an option `-allow-missing-config` that overrides the default requirement that a configuration block must already be present for the resource being imported. [GH-15876]
|
* cli: `terraform import` now accepts an option `-allow-missing-config` that overrides the default requirement that a configuration block must already be present for the resource being imported. ([#15876](https://github.com/hashicorp/terraform/issues/15876))
|
||||||
|
|
||||||
## 0.10.5 (September 14, 2017)
|
## 0.10.5 (September 14, 2017)
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ const Version = "0.10.6"
|
||||||
// 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 VersionPrerelease = "dev"
|
var VersionPrerelease = ""
|
||||||
|
|
||||||
// SemVersion is an instance of version.Version. This has the secondary
|
// SemVersion 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