From 0894344c6f280e1dd60e29d7f4cd11f1af8ac778 Mon Sep 17 00:00:00 2001 From: Florent AIDE Date: Thu, 28 Jun 2018 16:14:25 +0200 Subject: [PATCH] use gopkg.in/Masterminds/squirrel.v1 instead of github.com/Masterminds/squirrel Signed-off-by: Florent AIDE --- batcher.go | 2 +- batcher_test.go | 2 +- operators.go | 2 +- query.go | 2 +- store.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 (