From afb96db4523acefddc8ca6925b57c0676b0d7400 Mon Sep 17 00:00:00 2001 From: Mattias de Zalenski Date: Tue, 11 Apr 2023 23:52:30 +0200 Subject: [PATCH] Update go.mod and internal import for v2 --- cmd/nakedret/main.go | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/nakedret/main.go b/cmd/nakedret/main.go index b5567b1..2238bf3 100644 --- a/cmd/nakedret/main.go +++ b/cmd/nakedret/main.go @@ -3,7 +3,7 @@ package main import ( "golang.org/x/tools/go/analysis/singlechecker" - "github.com/alexkohler/nakedret" + "github.com/alexkohler/nakedret/v2" ) const ( diff --git a/go.mod b/go.mod index 6849150..b48ab88 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/alexkohler/nakedret +module github.com/alexkohler/nakedret/v2 go 1.18