Skip to content

Commit

Permalink
Fix v2 imports and readme (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnwpedro authored Jun 10, 2024
1 parent 691ecc7 commit a9dcf20
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ package main
import (
"fmt"

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

type Dog struct {
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"
"time"

"github.com/fauna/fauna-go/internal/fingerprinting"
"github.com/fauna/fauna-go/v2/internal/fingerprinting"
)

//go:embed version
Expand Down
2 changes: 1 addition & 1 deletion client_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"time"

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

// ExampleNewDefaultClient query fauna running in a local Docker instance:
Expand Down
2 changes: 1 addition & 1 deletion client_query_limits_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"testing"

"github.com/fauna/fauna-go"
"github.com/fauna/fauna-go/v2"
"github.com/stretchr/testify/assert"
)

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

"github.com/fauna/fauna-go"
"github.com/fauna/fauna-go/v2"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package fauna_test
import (
"testing"

"github.com/fauna/fauna-go"
"github.com/fauna/fauna-go/v2"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1

0 comments on commit a9dcf20

Please sign in to comment.