From 0ea02d822bb3d0e1e392385fdee7f26964b6b506 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Fri, 8 Mar 2024 08:32:56 -0500 Subject: [PATCH] tfversion: Add variable for version 1.9.0 Terraform 1.8.0-beta1 has been released and a 1.9 release branch has already been cut with its own changelog entries so we know there will be 1.9 series. As with any of these `tfversion` version variable inclusions, it does not feel like it warrants a changelog entry for such as small change, but happy to create one. --- tfversion/versions.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tfversion/versions.go b/tfversion/versions.go index 21f0727a9..4dcf5d14a 100644 --- a/tfversion/versions.go +++ b/tfversion/versions.go @@ -35,4 +35,5 @@ var ( Version1_6_0 *version.Version = version.Must(version.NewVersion("1.6.0")) Version1_7_0 *version.Version = version.Must(version.NewVersion("1.7.0")) Version1_8_0 *version.Version = version.Must(version.NewVersion("1.8.0")) + Version1_9_0 *version.Version = version.Must(version.NewVersion("1.9.0")) )