diff --git a/benchmark_test.go b/benchmark_test.go index 772466f..4e796ef 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - bindata "github.com/kevinburke/go-bindata" + bindata "github.com/kevinburke/go-bindata/v3" ) func dirSize(path string) (int64, error) { diff --git a/convert_test.go b/convert_test.go index 6b5c971..0173c5b 100644 --- a/convert_test.go +++ b/convert_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/kevinburke/go-bindata/testdata/assets" + "github.com/kevinburke/go-bindata/v3/testdata/assets" ) func TestSafeFunctionName(t *testing.T) { diff --git a/go-bindata/main.go b/go-bindata/main.go index ac14a83..450b9cf 100644 --- a/go-bindata/main.go +++ b/go-bindata/main.go @@ -12,7 +12,7 @@ import ( "regexp" "strings" - "github.com/kevinburke/go-bindata" + "github.com/kevinburke/go-bindata/v3" ) func main() { @@ -97,9 +97,9 @@ func parseArgs() *bindata.Config { // parseRecursive determines whether the given path has a recursive indicator and // returns a new path with the recursive indicator chopped off if it does. // -// ex: -// /path/to/foo/... -> (/path/to/foo, true) -// /path/to/bar -> (/path/to/bar, false) +// ex: +// /path/to/foo/... -> (/path/to/foo, true) +// /path/to/bar -> (/path/to/bar, false) func parseInput(path string) bindata.InputConfig { if strings.HasSuffix(path, "/...") { return bindata.InputConfig{ diff --git a/go.mod b/go.mod index ce4eba8..7bc7851 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/kevinburke/go-bindata +module github.com/kevinburke/go-bindata/v3 go 1.19