Release v0.13.6

pull/28160/head v0.13.6
hashicorp-ci 5 years ago
parent da621fdf79
commit f6beff0a28
No known key found for this signature in database
GPG Key ID: 51852D87348FFC4C

@ -1,12 +1,12 @@
## 0.13.6 (Unreleased)
## 0.13.6 (January 06, 2021)
UPGRADE NOTES:
* The builtin provider's `terraform_remote_state` data source no longer enforces Terraform version checks on the remote state file. This allows Terraform 0.13.6 to access remote state from future Terraform versions, up until a future incompatible state file version upgrade is required. [GH-26692]
* The builtin provider's `terraform_remote_state` data source no longer enforces Terraform version checks on the remote state file. This allows Terraform 0.13.6 to access remote state from future Terraform versions, up until a future incompatible state file version upgrade is required. ([#26692](https://github.com/hashicorp/terraform/issues/26692))
BUG FIXES:
* init: setting `-get-plugins` to `false` will now cause a warning, as this flag has been a no-op since 0.13.0 and usage is better served through using `provider_installation` blocks [GH-27092]
* init: setting `-get-plugins` to `false` will now cause a warning, as this flag has been a no-op since 0.13.0 and usage is better served through using `provider_installation` blocks ([#27092](https://github.com/hashicorp/terraform/issues/27092))
## 0.13.5 (October 21, 2020)

@ -16,7 +16,7 @@ var Version = "0.13.6"
// 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…
Cancel
Save