Skip to content

Commit

Permalink
fix: bump to v2 after git rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenhoang committed Jul 23, 2024
1 parent 029614d commit 6294d16
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion typesense/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package typesense
import (
"context"

"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api"
)

type StatsInterface interface {
Expand Down
4 changes: 2 additions & 2 deletions typesense/stats_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/typesense/api/pointer"
"github.com/typesense/typesense-go/v2/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api/pointer"
)

func TestStatsRetrieve(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion typesense/stopword.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package typesense
import (
"context"

"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api"
)

type StopwordInterface interface {
Expand Down
4 changes: 2 additions & 2 deletions typesense/stopword_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/typesense/api/pointer"
"github.com/typesense/typesense-go/v2/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api/pointer"
)

func TestStopwordRetrieve(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion typesense/stopwords.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package typesense
import (
"context"

"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api"
)

type StopwordsInterface interface {
Expand Down
4 changes: 2 additions & 2 deletions typesense/stopwords_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/typesense/api/pointer"
"github.com/typesense/typesense-go/v2/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api/pointer"
)

func TestStopwordsRetrieve(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions typesense/test/stopword_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"testing"

"github.com/stretchr/testify/require"
"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/typesense/api/pointer"
"github.com/typesense/typesense-go/v2/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api/pointer"
)

func TestStopwordRetrieve(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions typesense/test/stopwords_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/typesense/typesense-go/typesense/api"
"github.com/typesense/typesense-go/typesense/api/pointer"
"github.com/typesense/typesense-go/v2/typesense/api"
"github.com/typesense/typesense-go/v2/typesense/api/pointer"
)

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

0 comments on commit 6294d16

Please sign in to comment.