From e220c6d59edcf4b790c255346c592371dce8592d Mon Sep 17 00:00:00 2001 From: bui Date: Thu, 6 Apr 2023 15:36:55 +0200 Subject: [PATCH] bump supported format version to < 4.0 : it will allow us to merge future 1.5 collections into the hub during the preview phase --- pkg/cwversion/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cwversion/version.go b/pkg/cwversion/version.go index 57aea47f9..c3040c63d 100644 --- a/pkg/cwversion/version.go +++ b/pkg/cwversion/version.go @@ -30,8 +30,8 @@ var ( Tag string // = "dev" GoVersion = runtime.Version()[2:] // = "1.13" System = runtime.GOOS // = "linux" - Constraint_parser = ">= 1.0, <= 2.0" - Constraint_scenario = ">= 1.0, < 3.0" + Constraint_parser = ">= 1.0, < 4.0" + Constraint_scenario = ">= 1.0, < 4.0" Constraint_api = "v1" Constraint_acquis = ">= 1.0, < 2.0" )