diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3c46fe..dc1ed6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.0.1 (Unreleased) +# 0.0.1 (September 04, 2020) TEST RELEASE - PLEASE DO NOT USE @@ -6,12 +6,12 @@ TEST RELEASE - PLEASE DO NOT USE # 0.9.0 (xxx) BREAKING - - `context.Context` added to `tfinstall.Find` to allow for cancellation, timeouts, etc [GH-51] + - `context.Context` added to `tfinstall.Find` to allow for cancellation, timeouts, etc ([#51](https://github.com/hashicorp/terraform-exec/issues/51)) 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] + - 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)) # 0.8.0 (August 29, 2020) diff --git a/internal/version/version.go b/internal/version/version.go index b1268e31..bee9ae44 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.0.1" // 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.