diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a8263226029..46714d0ba5c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ -## 1.1.9 (Unreleased) +## 1.1.9 (April 20, 2022) BUG FIXES: -* cli: Fix crash when using sensitive values in sets. [GH-30825] -* cli: Fix double-quoted map keys when rendering a diff. [GH-30855] -* core: Prevent errors when handling a data source with incompatible schema changes [GH-30830] +* cli: Fix crash when using sensitive values in sets. ([#30825](https://github.com/hashicorp/terraform/issues/30825)) +* cli: Fix double-quoted map keys when rendering a diff. ([#30855](https://github.com/hashicorp/terraform/issues/30855)) +* core: Prevent errors when handling a data source with incompatible schema changes ([#30830](https://github.com/hashicorp/terraform/issues/30830)) ENHANCEMENTS: * cli: Terraform now supports [run tasks](https://www.terraform.io/cloud-docs/workspaces/settings/run-tasks), a Terraform Cloud integration for executing remote operations, for the post plan stage of a run. diff --git a/version/version.go b/version/version.go index bc26a864a4d1..65f5e38e56fb 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.1.9" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. -var Prerelease = "dev" +var Prerelease = "" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a