diff --git a/CHANGELOG.md b/CHANGELOG.md index e0108b4789..77918fa2f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,11 +16,11 @@ UPGRADE NOTES: Assigning `{ a = "foo" }` to this variable will result in the value `{ a = "foo", b = null, c = 127 }`. - This functionality was introduced as an experiment in Terraform 0.14. This release removes the experimental `defaults` function. [GH-31154] + This functionality was introduced as an experiment in Terraform 0.14. This release removes the experimental `defaults` function. ([#31154](https://github.com/hashicorp/terraform/issues/31154)) BUG FIXES: -* Made `terraform output` CLI help documentation consistent with web-based documentation [GH-29354] +* Made `terraform output` CLI help documentation consistent with web-based documentation ([#29354](https://github.com/hashicorp/terraform/issues/29354)) ## Previous Releases diff --git a/version/version.go b/version/version.go index aca727e93b..8cec9bc8a9 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.3.0" // 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 = "alpha20220608" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a