diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e4ab8f..85f96bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ -# 0.14.0 (Unreleased) +# 0.14.0 (June 24, 2021) FEATURES: - - Add `ProtocolVersion` to `ReattachConfig` struct, enabling provider protocol v6 support in reattach mode, provided that Terraform and the provider plugin are both using go-plugin v1.4.1 or later. This change is backwards-compatible, as zero values for this field are interpreted as protocol v5. [GH-182] - - Introduce `tfexec.Get()` for downloading modules [GH-176] - - Introduce `tfexec.Upgrade013()` [GH-178] + - Add `ProtocolVersion` to `ReattachConfig` struct, enabling provider protocol v6 support in reattach mode, provided that Terraform and the provider plugin are both using go-plugin v1.4.1 or later. This change is backwards-compatible, as zero values for this field are interpreted as protocol v5. ([#182](https://github.com/hashicorp/terraform-exec/issues/182)) + - Introduce `tfexec.Get()` for downloading modules ([#176](https://github.com/hashicorp/terraform-exec/issues/176)) + - Introduce `tfexec.Upgrade013()` ([#178](https://github.com/hashicorp/terraform-exec/issues/178)) INTERNAL: - - Update `terraform-json` to account for changes in state & plan JSON output in Terraform v1.0.1+ [GH-194] - - Improve error message for incompatible Terraform version [GH-191] + - Update `terraform-json` to account for changes in state & plan JSON output in Terraform v1.0.1+ ([#194](https://github.com/hashicorp/terraform-exec/issues/194)) + - Improve error message for incompatible Terraform version ([#191](https://github.com/hashicorp/terraform-exec/issues/191)) # 0.13.3 (April 23, 2021) diff --git a/internal/version/version.go b/internal/version/version.go index 4f26db7f..4d43e000 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,6 +1,6 @@ package version -const version = "0.13.3" +const version = "0.14.0" // ModuleVersion returns the current version of the github.com/hashicorp/terraform-exec Go module. // This is a function to allow for future possible enhancement using debug.BuildInfo.