diff --git a/CHANGELOG.md b/CHANGELOG.md
index 08a9bd1..f0432bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,7 @@
 
 BREAKING CHANGES:
 
- - The following error types have been removed. These errors were based on regex parsing of Terraform CLI's human-readable output into custom error cases. [GH-352]
+ - The following error types have been removed. These errors were based on regex parsing of Terraform CLI's human-readable output into custom error cases. ([#352](https://github.com/hashicorp/terraform-exec/issues/352))
    - `ErrConfigInvalid`
    - `ErrLockIdInvalid`
    - `ErrMissingVar`
@@ -17,7 +17,7 @@
 ENHANCEMENTS:
 
 - tfexec: Add `(Terraform).ApplyJSON()`, `(Terraform).DestroyJSON()`, `(Terraform).PlanJSON()` and `(Terraform).RefreshJSON()` methods ([#354](https://github.com/hashicorp/terraform-exec/pull/354))
-- tfexec: Add `(Terraform).MetadataFunctions()` method [GH-358]
+- tfexec: Add `(Terraform).MetadataFunctions()` method ([#358](https://github.com/hashicorp/terraform-exec/issues/358))
 
 # 0.17.3 (August 31, 2022)
 
diff --git a/internal/version/version.go b/internal/version/version.go
index dbc9466..c091be8 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -1,6 +1,6 @@
 package version
 
-const version = "0.17.3"
+const version = ""
 
 // 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.