Skip to content

Commit

Permalink
/v2
Browse files Browse the repository at this point in the history
  • Loading branch information
hownowstephen committed Jun 16, 2021
1 parent 525b0c8 commit aa6538d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion customerio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"testing"

"github.com/customerio/go-customerio"
"github.com/customerio/go-customerio/v2"
)

var cio *customerio.CustomerIO
Expand Down
2 changes: 1 addition & 1 deletion examples/transactional.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/customerio/go-customerio"
"github.com/customerio/go-customerio/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"testing"

"github.com/customerio/go-customerio"
"github.com/customerio/go-customerio/v2"
)

func TestAPIOptions(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion send_email_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/customerio/go-customerio"
"github.com/customerio/go-customerio/v2"
)

func TestSendEmail(t *testing.T) {
Expand Down

0 comments on commit aa6538d

Please sign in to comment.