diff --git a/README.md b/README.md index 106a646..fe4885e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add this line to your application's imports: ```go import ( // ... - "github.com/customerio/go-customerio" + "github.com/customerio/go-customerio/v2" ) ``` @@ -24,7 +24,7 @@ And then execute: Or install it yourself: - $ go get "github.com/customerio/go-customerio" + $ go get github.com/customerio/go-customerio ## Usage diff --git a/customerio_test.go b/customerio_test.go index 759a233..88a4c7c 100644 --- a/customerio_test.go +++ b/customerio_test.go @@ -13,7 +13,7 @@ import ( "strings" "testing" - "github.com/customerio/go-customerio" + "github.com/customerio/go-customerio/v2" ) var cio *customerio.CustomerIO diff --git a/examples/transactional.go b/examples/transactional.go index 10f561b..2172b46 100644 --- a/examples/transactional.go +++ b/examples/transactional.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "github.com/customerio/go-customerio" + "github.com/customerio/go-customerio/v2" ) func main() { diff --git a/options_test.go b/options_test.go index c25f255..a3d353f 100644 --- a/options_test.go +++ b/options_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/customerio/go-customerio" + "github.com/customerio/go-customerio/v2" ) func TestAPIOptions(t *testing.T) { diff --git a/send_email_test.go b/send_email_test.go index 66800d8..770afa0 100644 --- a/send_email_test.go +++ b/send_email_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/customerio/go-customerio" + "github.com/customerio/go-customerio/v2" ) func TestSendEmail(t *testing.T) {