From 5873ea302b5c4b7fe862a840286da28517ce7424 Mon Sep 17 00:00:00 2001 From: Patrick O'brien Date: Sat, 12 Nov 2016 11:45:55 +1000 Subject: [PATCH] Fix imports for v6 --- byte.go | 2 +- bytes.go | 2 +- float32.go | 2 +- int.go | 2 +- int16.go | 2 +- int32.go | 2 +- int8.go | 2 +- json.go | 2 +- uint.go | 2 +- uint16.go | 2 +- uint32.go | 2 +- uint64.go | 2 +- uint8.go | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/byte.go b/byte.go index 627abf9..69339ff 100644 --- a/byte.go +++ b/byte.go @@ -6,7 +6,7 @@ import ( "encoding/json" "errors" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Byte is an nullable int. diff --git a/bytes.go b/bytes.go index 1d89fe6..2df070f 100644 --- a/bytes.go +++ b/bytes.go @@ -5,7 +5,7 @@ import ( "database/sql/driver" "encoding/json" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // NullBytes is a global byte slice of JSON null diff --git a/float32.go b/float32.go index e29846b..b0a5545 100644 --- a/float32.go +++ b/float32.go @@ -6,7 +6,7 @@ import ( "encoding/json" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Float32 is a nullable float32. diff --git a/int.go b/int.go index d43afe6..527068a 100644 --- a/int.go +++ b/int.go @@ -6,7 +6,7 @@ import ( "encoding/json" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Int is an nullable int. diff --git a/int16.go b/int16.go index ad07a43..2bdffc8 100644 --- a/int16.go +++ b/int16.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Int16 is an nullable int16. diff --git a/int32.go b/int32.go index 5c87397..af0b012 100644 --- a/int32.go +++ b/int32.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Int32 is an nullable int32. diff --git a/int8.go b/int8.go index 0adb4d3..0330021 100644 --- a/int8.go +++ b/int8.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Int8 is an nullable int8. diff --git a/json.go b/json.go index 8d7e89a..0492b6a 100644 --- a/json.go +++ b/json.go @@ -7,7 +7,7 @@ import ( "errors" "fmt" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // JSON is a nullable []byte. diff --git a/uint.go b/uint.go index 440d544..11302a7 100644 --- a/uint.go +++ b/uint.go @@ -6,7 +6,7 @@ import ( "encoding/json" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Uint is an nullable uint. diff --git a/uint16.go b/uint16.go index d56570d..9b512af 100644 --- a/uint16.go +++ b/uint16.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Uint16 is an nullable uint16. diff --git a/uint32.go b/uint32.go index 67a3d70..4c64e70 100644 --- a/uint32.go +++ b/uint32.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Uint32 is an nullable uint32. diff --git a/uint64.go b/uint64.go index f96bf59..94b8232 100644 --- a/uint64.go +++ b/uint64.go @@ -6,7 +6,7 @@ import ( "encoding/json" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Uint64 is an nullable uint64. diff --git a/uint8.go b/uint8.go index 58ffc5e..3987f49 100644 --- a/uint8.go +++ b/uint8.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "gopkg.in/nullbio/null.v5/convert" + "gopkg.in/nullbio/null.v6/convert" ) // Uint8 is an nullable uint8.