diff --git a/batcher.go b/batcher.go index 2c2ad12..6aabb5f 100644 --- a/batcher.go +++ b/batcher.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" - "github.com/Masterminds/squirrel" + "gopkg.in/Masterminds/squirrel.v1" ) type batchQueryRunner struct { diff --git a/batcher_test.go b/batcher_test.go index 441eb1a..da1debe 100644 --- a/batcher_test.go +++ b/batcher_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/Masterminds/squirrel" "github.com/stretchr/testify/require" + "gopkg.in/Masterminds/squirrel.v1" ) func TestOneToManyWithFilterNotWritable(t *testing.T) { diff --git a/operators.go b/operators.go index a7d75e8..040afab 100644 --- a/operators.go +++ b/operators.go @@ -8,7 +8,7 @@ import ( "gopkg.in/src-d/go-kallax.v1/types" - "github.com/Masterminds/squirrel" + "gopkg.in/Masterminds/squirrel.v1" ) // ScalarCond returns a kallax.Condition that compares a property with the passed diff --git a/query.go b/query.go index b31ed2d..dcdf86e 100644 --- a/query.go +++ b/query.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "github.com/Masterminds/squirrel" + "gopkg.in/Masterminds/squirrel.v1" ) var ( diff --git a/store.go b/store.go index 62eb95d..a3866c0 100644 --- a/store.go +++ b/store.go @@ -7,8 +7,8 @@ import ( "fmt" "log" - "github.com/Masterminds/squirrel" "github.com/lann/builder" + "gopkg.in/Masterminds/squirrel.v1" ) var (