v0.18.1 [skip ci]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 08062cf..bfdc8dd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
-# 0.18.1 (Unreleased)
+# 0.18.1 (March 01, 2023)
 
 BUG FIXES:
 
- - Fix bug in which errors returned from commands such as `(Terraform).Apply()` were missing stderr output from Terraform. [GH-372]
+ - Fix bug in which errors returned from commands such as `(Terraform).Apply()` were missing stderr output from Terraform. ([#372](https://github.com/hashicorp/terraform-exec/issues/372))
 
 # 0.18.0 (February 20, 2023)
 
diff --git a/internal/version/version.go b/internal/version/version.go
index 86b28d9..bf1a046 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -1,6 +1,6 @@
 package version
 
-const version = "0.18.0"
+const version = "0.18.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.