v0.9.0 [skip ci]
diff --git a/CHANGELOG.md b/CHANGELOG.md index 51681bf..14bcec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,14 +1,14 @@ -# 0.9.0 (Unreleased) +# 0.9.0 (September 09, 2020) BREAKING - - `context.Context` added to `tfinstall.Find` to allow for cancellation, timeouts, etc [GH-51] - - You can no longer use `TF_WORKSPACE` for workspace management, you must use `Terraform.WorkspaceSelect` [GH-75] + - `context.Context` added to `tfinstall.Find` to allow for cancellation, timeouts, etc ([#51](https://github.com/hashicorp/terraform-exec/issues/51)) + - You can no longer use `TF_WORKSPACE` for workspace management, you must use `Terraform.WorkspaceSelect` ([#75](https://github.com/hashicorp/terraform-exec/issues/75)) FEATURES - - Add `ErrWorkspaceExists` for when workspaces with the same name already exist when calling `Terraform.WorkspaceNew` [GH-67] - - Added `tfinstall.GitRef` to support installation of Terraform from a git ref instead of by released version [GH-51] - - Created the **tfinstall** CLI utility (this is mostly for use in things like CI automation) [GH-29] - - Added `ReattachOption` for plugin reattach functionality [GH-78] + - Add `ErrWorkspaceExists` for when workspaces with the same name already exist when calling `Terraform.WorkspaceNew` ([#67](https://github.com/hashicorp/terraform-exec/issues/67)) + - Added `tfinstall.GitRef` to support installation of Terraform from a git ref instead of by released version ([#51](https://github.com/hashicorp/terraform-exec/issues/51)) + - Created the **tfinstall** CLI utility (this is mostly for use in things like CI automation) ([#29](https://github.com/hashicorp/terraform-exec/issues/29)) + - Added `ReattachOption` for plugin reattach functionality ([#78](https://github.com/hashicorp/terraform-exec/issues/78)) # 0.8.0 (August 29, 2020)
diff --git a/internal/version/version.go b/internal/version/version.go index b1268e3..2f985a7 100644 --- a/internal/version/version.go +++ b/internal/version/version.go
@@ -1,6 +1,6 @@ package version -const version = "0.8.0" +const version = "0.9.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.