v0.12.15
This commit is contained in:
parent
a020cf67c4
commit
30637c9c90
|
@ -1,8 +1,8 @@
|
|||
## 0.12.15 (Unreleased)
|
||||
## 0.12.15 (November 14, 2019)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* various commands: Fixed errant error "Initialization required. Please see the error message above." [GH-23383]
|
||||
* various commands: Fixed errant error "Initialization required. Please see the error message above." ([#23383](https://github.com/hashicorp/terraform/issues/23383))
|
||||
|
||||
The error was produced on some of Terraform's subcommands (in particular `terraform show` and `terraform output`, but possibly others) if a warning was emitted during configuration loading and if a `backend` block was present. This issue has been present since v0.12.0 for any configuration that produces configuration-related deprecation warnings, but it became more visible in v0.12.14 due to the addition of several more situations that could produce warnings.
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ var Version = "0.12.15"
|
|||
// 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