diff --git a/README.md b/README.md index bc6187f..9d8393a 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ To install `cryptipass`, use `go get`: ```bash -go get github.com/francescoalemanno/cryptipass +go get github.com/francescoalemanno/cryptipass/v2 ``` Then, import it into your project: ```go -import "github.com/francescoalemanno/cryptipass" +import "github.com/francescoalemanno/cryptipass/v2" ``` NOTE: **We also have a [CLI](cmd/genpw) available for non-library uses.** diff --git a/cmd/genpw/cli.go b/cmd/genpw/cli.go index 041a6ef..cc745d5 100644 --- a/cmd/genpw/cli.go +++ b/cmd/genpw/cli.go @@ -8,7 +8,7 @@ import ( "strings" "text/tabwriter" - "github.com/francescoalemanno/cryptipass" + "github.com/francescoalemanno/cryptipass/v2" ) type Passphrase struct { diff --git a/cryptipass_test.go b/cryptipass_test.go index e0e753f..0dacc6d 100644 --- a/cryptipass_test.go +++ b/cryptipass_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/francescoalemanno/cryptipass" + "github.com/francescoalemanno/cryptipass/v2" ) func TestBasic(t *testing.T) { diff --git a/examples/customlist/customlist.go b/examples/customlist/customlist.go index b5beed0..aca1da5 100644 --- a/examples/customlist/customlist.go +++ b/examples/customlist/customlist.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/francescoalemanno/cryptipass" + "github.com/francescoalemanno/cryptipass/v2" ) func main() { diff --git a/examples/passphrase/main.go b/examples/passphrase/main.go index f9733ea..0162eeb 100644 --- a/examples/passphrase/main.go +++ b/examples/passphrase/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/francescoalemanno/cryptipass" + "github.com/francescoalemanno/cryptipass/v2" ) func main() { diff --git a/go.mod b/go.mod index 405a074..05073ce 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/francescoalemanno/cryptipass +module github.com/francescoalemanno/cryptipass/v2 go 1.23.0