From a8e5eaf628dcbd66869b9512e81c3495cfac5722 Mon Sep 17 00:00:00 2001 From: Terraform SDK CircleCI Date: Thu, 10 Sep 2020 22:15:26 +0000 Subject: [PATCH] v2.0.2 [skip ci] --- CHANGELOG.md | 16 ++++++++-------- meta/meta.go | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c88835126b..225d33a9504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,14 @@ -# 2.0.2 (Unreleased) +# 2.0.2 (September 10, 2020) BUG FIXES -* Fixed bug where state is read from the wrong workspace during import tests. [GH-552] -* Fixed bug where the resource could belong to another provider when finding the resource state to check during import tests [GH-522] -* Removed excessive logging when ExpectNonEmptyPlan was successfully matched [GH-556] -* Fixed bug where state from data sources, which can't be imported, would be surfaced during ImportStateVerify [GH-555] -* Fixed bug that ignored ExpectError when testing state imports [GH-550] -* Fixed bug that sometimes prevented TestStep numbers from appearing in error output [GH-557] -* Fixed bug that would ignore `TestStep.Destroy` when running tests. [GH-563] +* Fixed bug where state is read from the wrong workspace during import tests. ([#552](https://github.com/hashicorp/terraform-plugin-sdk/issues/552)) +* Fixed bug where the resource could belong to another provider when finding the resource state to check during import tests ([#522](https://github.com/hashicorp/terraform-plugin-sdk/issues/522)) +* Removed excessive logging when ExpectNonEmptyPlan was successfully matched ([#556](https://github.com/hashicorp/terraform-plugin-sdk/issues/556)) +* Fixed bug where state from data sources, which can't be imported, would be surfaced during ImportStateVerify ([#555](https://github.com/hashicorp/terraform-plugin-sdk/issues/555)) +* Fixed bug that ignored ExpectError when testing state imports ([#550](https://github.com/hashicorp/terraform-plugin-sdk/issues/550)) +* Fixed bug that sometimes prevented TestStep numbers from appearing in error output ([#557](https://github.com/hashicorp/terraform-plugin-sdk/issues/557)) +* Fixed bug that would ignore `TestStep.Destroy` when running tests. ([#563](https://github.com/hashicorp/terraform-plugin-sdk/issues/563)) # 2.0.1 (August 10, 2020) diff --git a/meta/meta.go b/meta/meta.go index e626faa3a3a..252aa6f1aaf 100644 --- a/meta/meta.go +++ b/meta/meta.go @@ -11,7 +11,7 @@ import ( ) // The main version number that is being run at the moment. -var SDKVersion = "2.0.1" +var SDKVersion = "2.0.2" // 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