diff --git a/CHANGELOG.md b/CHANGELOG.md index fb6028c51..f1f0f3788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,16 @@ NEW FEATURES: -* lang/funcs: add a new `type()` function, only available in `terraform console` [GH-28501] +* lang/funcs: add a new `type()` function, only available in `terraform console` ([#28501](https://github.com/hashicorp/terraform/issues/28501)) ENHANCEMENTS: -* configs: Terraform now checks the syntax of and normalizes module source addresses (the `source` argument in `module` blocks) during configuration decoding rather than only at module installation time. This is largely just an internal refactoring, but a visible benefit of this change is that the `terraform init` messages about module downloading will now show the canonical module package address Terraform is downloading from, after interpreting the special shorthands for common cases like GitHub URLs. [GH-28854] -* command/show: The -json output now indicates which state values are sensitive. [GH-28889] +* configs: Terraform now checks the syntax of and normalizes module source addresses (the `source` argument in `module` blocks) during configuration decoding rather than only at module installation time. This is largely just an internal refactoring, but a visible benefit of this change is that the `terraform init` messages about module downloading will now show the canonical module package address Terraform is downloading from, after interpreting the special shorthands for common cases like GitHub URLs. ([#28854](https://github.com/hashicorp/terraform/issues/28854)) +* command/show: The -json output now indicates which state values are sensitive. ([#28889](https://github.com/hashicorp/terraform/issues/28889)) BUG FIXES: -* command/show: Fix an issue where the json configuration representation was missing fully-unwrapped references. [GH-28884] +* command/show: Fix an issue where the json configuration representation was missing fully-unwrapped references. ([#28884](https://github.com/hashicorp/terraform/issues/28884)) ## Previous Releases diff --git a/version/version.go b/version/version.go index 86f22153d..fcd80fe73 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 = "alpha20210616" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a