diff --git a/go.mod b/go.mod index 6d56167..913f4e5 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/gobuffalo/nulls go 1.13 require ( - github.com/gofrs/uuid/v3 v3.1.2 + github.com/gofrs/uuid v3.2.0+incompatible github.com/jmoiron/sqlx v1.2.0 github.com/mattn/go-sqlite3 v2.0.3+incompatible github.com/stretchr/testify v1.5.1 diff --git a/go.sum b/go.sum index 24f8fbb..904264d 100644 --- a/go.sum +++ b/go.sum @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/go-sql-driver/mysql v1.4.0 h1:7LxgVwFb2hIQtMm87NdgAVfXjnt4OePseqT1tKx+opk= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/gofrs/uuid/v3 v3.1.2 h1:V3IBv1oU82x6YIr5txe3azVHgmOKYdyKQTowm9moBlY= -github.com/gofrs/uuid/v3 v3.1.2/go.mod h1:xPwMqoocQ1L5G6pXX5BcE7N5jlzn2o19oqAKxwZW/kI= +github.com/gofrs/uuid v3.2.0+incompatible h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE= +github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/jmoiron/sqlx v1.2.0 h1:41Ip0zITnmWNR/vHV+S4m+VoUivnWY5E4OJfLZjCJMA= github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= diff --git a/nulls.go b/nulls.go index f4291be..bb1cd44 100644 --- a/nulls.go +++ b/nulls.go @@ -3,7 +3,7 @@ package nulls import ( "database/sql/driver" - "github.com/gofrs/uuid/v3" + "github.com/gofrs/uuid" ) // nullable a generic representation of nulls type. diff --git a/types_test.go b/types_test.go index 34800a6..c55f43f 100644 --- a/types_test.go +++ b/types_test.go @@ -10,7 +10,7 @@ import ( "time" . "github.com/gobuffalo/nulls" - "github.com/gofrs/uuid/v3" + "github.com/gofrs/uuid" "github.com/jmoiron/sqlx" _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/require" diff --git a/uuid.go b/uuid.go index 2534a40..1b6ca1e 100644 --- a/uuid.go +++ b/uuid.go @@ -5,7 +5,7 @@ import ( "encoding/json" "strings" - "github.com/gofrs/uuid/v3" + "github.com/gofrs/uuid" ) // UUID can be used with the standard sql package to represent a diff --git a/uuid_test.go b/uuid_test.go index 687fb7f..a85877d 100644 --- a/uuid_test.go +++ b/uuid_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "github.com/gofrs/uuid/v3" + "github.com/gofrs/uuid" "github.com/stretchr/testify/require" )