From fe8183c4af882bd92dd52e86e9b11e7251174d1c Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Mon, 7 Feb 2022 15:06:05 -0500 Subject: [PATCH] json: Increment JSON plan format version The JSON plan configuration data now includes a `full_name` field for providers. This addition warrants a backwards compatible increment to the version number. --- internal/command/jsonplan/plan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/jsonplan/plan.go b/internal/command/jsonplan/plan.go index 06ed97961012..53fe8ec01b45 100644 --- a/internal/command/jsonplan/plan.go +++ b/internal/command/jsonplan/plan.go @@ -22,7 +22,7 @@ import ( // FormatVersion represents the version of the json format and will be // incremented for any change to this format that requires changes to a // consuming parser. -const FormatVersion = "1.0" +const FormatVersion = "1.1" // Plan is the top-level representation of the json format of a plan. It includes // the complete config and current state.