From e291ace3eba069bd75931280c99aadbdc8d3534a Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 30 Jun 2021 15:52:11 +0000 Subject: [PATCH] Release v1.1.0-alpha20210630 --- CHANGELOG.md | 6 +++--- version/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10aec916e..f33a3facd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ NEW FEATURES: -* cli: `terraform add` generates resource configuration templates [GH-28874] +* cli: `terraform add` generates resource configuration templates ([#28874](https://github.com/hashicorp/terraform/issues/28874)) * config: a new `type()` function, only available in `terraform console` ([#28501](https://github.com/hashicorp/terraform/issues/28501)) ENHANCEMENTS: @@ -11,8 +11,8 @@ ENHANCEMENTS: BUG FIXES: -* core: Fixed an issue where provider configuration input variables were not properly merging with values in configuration [GH-29000] -* cli: Fixed a crashing bug with some edge-cases when reporting syntax errors that happen to be reported at the position of a newline. [GH-29048] +* core: Fixed an issue where provider configuration input variables were not properly merging with values in configuration ([#29000](https://github.com/hashicorp/terraform/issues/29000)) +* cli: Fixed a crashing bug with some edge-cases when reporting syntax errors that happen to be reported at the position of a newline. ([#29048](https://github.com/hashicorp/terraform/issues/29048)) ## Previous Releases diff --git a/version/version.go b/version/version.go index 86f22153d..5edf10ae7 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "1.1.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 = "alpha20210630" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a