From 8a2f9b473a872089bd8227313c457ea72c53de24 Mon Sep 17 00:00:00 2001 From: Owen Rumney Date: Wed, 8 Dec 2021 11:26:21 +0000 Subject: [PATCH] remove v2 --- example/main.go | 2 +- go.mod | 2 +- test/report_stage_test.go | 2 +- test/run_stage_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/example/main.go b/example/main.go index b192827..be3b92e 100644 --- a/example/main.go +++ b/example/main.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/owenrumney/go-sarif/v2/sarif" + "github.com/owenrumney/go-sarif/sarif" ) // simple structure for the output of tfsec diff --git a/go.mod b/go.mod index 753a808..515ad97 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/owenrumney/go-sarif/v2 +module github.com/owenrumney/go-sarif go 1.16 diff --git a/test/report_stage_test.go b/test/report_stage_test.go index 013e4cc..8cc6188 100644 --- a/test/report_stage_test.go +++ b/test/report_stage_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/owenrumney/go-sarif/v2/sarif" + "github.com/owenrumney/go-sarif/sarif" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/test/run_stage_test.go b/test/run_stage_test.go index 7e5e31a..8db23cc 100644 --- a/test/run_stage_test.go +++ b/test/run_stage_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "github.com/owenrumney/go-sarif/v2/sarif" + "github.com/owenrumney/go-sarif/sarif" "github.com/stretchr/testify/assert" )