v0.19.0 [skip ci]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7440e8..4b03642 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,13 @@
-# 0.19.0 (Unreleased)
+# 0.19.0 (August 31, 2023)
 
 ENHANCEMENTS:
- - Add support for `terraform test` command [GH-398]
- - Add support for `-refresh-only` flag for `Plan` and `Apply` methods. [GH-402]
- - Add support for `-destroy` flag for `Apply` [GH-292]
+ - Add support for `terraform test` command ([#398](https://github.com/hashicorp/terraform-exec/issues/398))
+ - Add support for `-refresh-only` flag for `Plan` and `Apply` methods. ([#402](https://github.com/hashicorp/terraform-exec/issues/402))
+ - Add support for `-destroy` flag for `Apply` ([#292](https://github.com/hashicorp/terraform-exec/issues/292))
 
 BUG FIXES:
 
- - Fix bug in which the `TF_WORKSPACE` env var was set to an empty string, instead of being unset as intended. [GH-388]
+ - Fix bug in which the `TF_WORKSPACE` env var was set to an empty string, instead of being unset as intended. ([#388](https://github.com/hashicorp/terraform-exec/issues/388))
 
 # 0.18.1 (March 01, 2023)
 
diff --git a/internal/version/version.go b/internal/version/version.go
index b33428b..e5328d9 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -3,7 +3,7 @@
 
 package version
 
-const version = "0.18.1"
+const version = "0.19.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.