From 31917ed59ebf5ef459884c3fdfd38205074fa9a8 Mon Sep 17 00:00:00 2001 From: hashicorp-ci Date: Thu, 10 Sep 2020 15:17:37 +0000 Subject: [PATCH] Release v0.14.0-alpha20200910 --- CHANGELOG.md | 12 ++++++------ version/version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e531e44d..1cb9410eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,17 @@ ENHANCEMENTS: -* cli: A new global command line option `-chdir=...`, placed before the selected subcommand, instructs Terraform to switch to a different working directory before executing the subcommand. This is similar to switching to a new directory with `cd` before running Terraform, but it avoids changing the state of the calling shell. [GH-26087] -* command: Added an experimental concise diff renderer. By default, Terraform plans now hide most unchanged fields, only displaying the most relevant changes and some identifying context. This experiment can be disabled by setting a `TF_X_CONCISE_DIFF` environment variable to `0`. [GH-26187] +* cli: A new global command line option `-chdir=...`, placed before the selected subcommand, instructs Terraform to switch to a different working directory before executing the subcommand. This is similar to switching to a new directory with `cd` before running Terraform, but it avoids changing the state of the calling shell. ([#26087](https://github.com/hashicorp/terraform/issues/26087)) +* command: Added an experimental concise diff renderer. By default, Terraform plans now hide most unchanged fields, only displaying the most relevant changes and some identifying context. This experiment can be disabled by setting a `TF_X_CONCISE_DIFF` environment variable to `0`. ([#26187](https://github.com/hashicorp/terraform/issues/26187)) BREAKING CHANGES: -* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. [GH-26135] +* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. ([#26135](https://github.com/hashicorp/terraform/issues/26135)) BUG FIXES: -* command/clistate: return an error on a state unlock failure [GH-25729] -* lang/funcs: fix panic when element() is called with a negative offset [GH-26079] -* states/remote: fix `state push -force` to work for all backends [GH-26190] +* command/clistate: return an error on a state unlock failure [[#25729](https://github.com/hashicorp/terraform/issues/25729)] +* lang/funcs: fix panic when element() is called with a negative offset ([#26079](https://github.com/hashicorp/terraform/issues/26079)) +* states/remote: fix `state push -force` to work for all backends ([#26190](https://github.com/hashicorp/terraform/issues/26190)) ## Previous Releases diff --git a/version/version.go b/version/version.go index 8dd290be7..f8e3c5516 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var Version = "0.14.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 = "alpha20200910" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a