From c03851a23806715eb576edaa6c1046715158f87a Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Fri, 13 Sep 2024 10:12:17 +0100 Subject: [PATCH] feat: reset report version to 1 Signed-off-by: Brian McGee --- pkg/build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/build/build.go b/pkg/build/build.go index c8c3c1c..f31a04a 100644 --- a/pkg/build/build.go +++ b/pkg/build/build.go @@ -10,5 +10,5 @@ var ( // It is set via Nix to match the Nixpkgs system. System = "" // ReportVersion is used to indicate significant changes in the report output and is embedded JSON report produced. - ReportVersion uint = 2 + ReportVersion uint = 1 )