Skip to content

Commit

Permalink
fix: package version in go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
xobotyi committed Apr 10, 2022
1 parent bee026a commit 55df32e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/exhaustruct/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"golang.org/x/tools/go/analysis/singlechecker"

"github.com/GaijinEntertainment/go-exhaustruct/pkg/analyzer"
"github.com/GaijinEntertainment/go-exhaustruct/v2/pkg/analyzer"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/GaijinEntertainment/go-exhaustruct
module github.com/GaijinEntertainment/go-exhaustruct/v2

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer/analyzer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"golang.org/x/tools/go/analysis/analysistest"

"github.com/GaijinEntertainment/go-exhaustruct/pkg/analyzer"
"github.com/GaijinEntertainment/go-exhaustruct/v2/pkg/analyzer"
)

func TestAll(t *testing.T) {
Expand Down

0 comments on commit 55df32e

Please sign in to comment.