diff --git a/README.md b/README.md index 8d971ff..1b96a72 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # go-jsonstruct -[![PkgGoDev](https://pkg.go.dev/badge/github.com/twpayne/go-jsonstruct/v2)](https://pkg.go.dev/github.com/twpayne/go-jsonstruct/v2) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/twpayne/go-jsonstruct/v3)](https://pkg.go.dev/github.com/twpayne/go-jsonstruct/v3) Generate Go structs from multiple JSON objects. @@ -32,7 +32,7 @@ Go program. Example collections include: Install go-jsonstruct: ```sh -go install github.com/twpayne/go-jsonstruct/v2/cmd/gojsonstruct@latest +go install github.com/twpayne/go-jsonstruct/v3/cmd/gojsonstruct@latest ``` Feed it some JSON objects. For example you can feed it with diff --git a/cmd/gojsonstruct/main.go b/cmd/gojsonstruct/main.go index bcde49a..07670ab 100644 --- a/cmd/gojsonstruct/main.go +++ b/cmd/gojsonstruct/main.go @@ -9,7 +9,7 @@ import ( "github.com/spf13/pflag" - "github.com/twpayne/go-jsonstruct/v2" + "github.com/twpayne/go-jsonstruct/v3" ) var ( diff --git a/go.mod b/go.mod index 3adbee8..0702631 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/twpayne/go-jsonstruct/v2 +module github.com/twpayne/go-jsonstruct/v3 go 1.21