diff --git a/CHANGELOG.md b/CHANGELOG.md index b12a1ffe1..6a112c44f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ -## 0.13.0-rc1 (Unreleased) +## 0.13.0-rc1 (July 22, 2020) BUG FIXES: -* command/init: Fix confusing error message for locally-installed providers with invalid package structure [GH-25504] -* core: Prevent outputs from being evaluated during destroy [GH-25500] -* core: Fix the pruning of temporary values from the root module which will fail to evaluate during destroy [GH-25543] -* core: Don't create redundant dependency edges between objects in different instances of the same module. [GH-25599] -* core: Prevent quadratic memory usage with large numbers of instances by not storing the complete resource state in each instance [GH-25544] -* core: Fix errors and remove cycles when a provider configuration references resources during a full destroy, and fix empty evaluation results when using self references in a destroy provisioner. [GH-25681] +* command/init: Fix confusing error message for locally-installed providers with invalid package structure ([#25504](https://github.com/hashicorp/terraform/issues/25504)) +* core: Prevent outputs from being evaluated during destroy ([#25500](https://github.com/hashicorp/terraform/issues/25500)) +* core: Fix the pruning of temporary values from the root module which will fail to evaluate during destroy ([#25543](https://github.com/hashicorp/terraform/issues/25543)) +* core: Don't create redundant dependency edges between objects in different instances of the same module. ([#25599](https://github.com/hashicorp/terraform/issues/25599)) +* core: Prevent quadratic memory usage with large numbers of instances by not storing the complete resource state in each instance ([#25544](https://github.com/hashicorp/terraform/issues/25544)) +* core: Fix errors and remove cycles when a provider configuration references resources during a full destroy, and fix empty evaluation results when using self references in a destroy provisioner. ([#25681](https://github.com/hashicorp/terraform/issues/25681)) ## 0.13.0-beta3 (July 01, 2020) diff --git a/version/version.go b/version/version.go index 168a4d657..ed0c89753 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.13.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 = "rc1" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a