v0.23.0 [skip ci]
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2494ad7..b8683eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,4 +1,4 @@ -# 0.23.0 (Unreleased) +# 0.23.0 (April 10, 2025) ENHANCEMENTS: * Context cancellation on Unix systems will now send Terraform process SIGINT instead of killing it (which is otherwise default `os/exec` behaviour) ([#512](https://github.com/hashicorp/terraform-exec/pull/512))
diff --git a/internal/version/version.go b/internal/version/version.go index bcb308e..015d50c 100644 --- a/internal/version/version.go +++ b/internal/version/version.go
@@ -3,7 +3,7 @@ package version -const version = "0.22.0" +const version = "0.23.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.