v0.8.0 [skip ci]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 450e2b7..ab57d7b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,15 @@
-# 0.8.0 (Unreleased)
+# 0.8.0 (August 29, 2020)
BREAKING
- - Add `-detailed-exit-code` to `Terraform.Plan` calls, `Terraform.Plan` now also returns a bool indicating if any diff is present [GH-55]
+ - Add `-detailed-exit-code` to `Terraform.Plan` calls, `Terraform.Plan` now also returns a bool indicating if any diff is present ([#55](https://github.com/hashicorp/terraform-exec/issues/55))
FEATURES
- - Added `Terraform.SetAppendUserAgent` for User-Agent management from consuming applications [GH-46]
- - Added `Terraform.WorkspaceList`, `Terraform.WorkspaceNew`, and `Terraform.WorkspaceSelect` along with the `ErrNoWorkspace` error to indicate a workspace does not exist [GH-56]
- - Added support for using multiple `VarFile` options [GH-61]
+ - Added `Terraform.SetAppendUserAgent` for User-Agent management from consuming applications ([#46](https://github.com/hashicorp/terraform-exec/issues/46))
+ - Added `Terraform.WorkspaceList`, `Terraform.WorkspaceNew`, and `Terraform.WorkspaceSelect` along with the `ErrNoWorkspace` error to indicate a workspace does not exist ([#56](https://github.com/hashicorp/terraform-exec/issues/56))
+ - Added support for using multiple `VarFile` options ([#61](https://github.com/hashicorp/terraform-exec/issues/61))
BUG FIXES
- - Fix bug with checking for empty path before executing version command [GH-62]
+ - Fix bug with checking for empty path before executing version command ([#62](https://github.com/hashicorp/terraform-exec/issues/62))
# 0.7.0 (August 20, 2020)
diff --git a/internal/version/version.go b/internal/version/version.go
index 4e0f0d4..b1268e3 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -1,6 +1,6 @@
package version
-const version = "0.7.0"
+const version = "0.8.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.