Skip to content

Commit 4b8cf50

Browse files
committed
Merge tag 'v2.0.0' into develop
Release v2.0.0
2 parents 360ab6c + ca0916a commit 4b8cf50

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+33
-34
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ go:
66

77
cache: apt
88

9-
go_import_path: gopkg.in/dancannon/gorethink.v1
9+
go_import_path: gopkg.in/dancannon/gorethink.v2
1010

1111
before_script:
1212
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 2 additions & 2 deletions

checkers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
test "gopkg.in/check.v1"
88

9-
"gopkg.in/dancannon/gorethink.v1/types"
9+
"gopkg.in/dancannon/gorethink.v2/types"
1010
)
1111

1212
type jsonChecker struct {

connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync/atomic"
1010
"time"
1111

12-
p "gopkg.in/dancannon/gorethink.v1/ql2"
12+
p "gopkg.in/dancannon/gorethink.v2/internal/ql2"
1313
)
1414

1515
const (

connection_handshake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
"golang.org/x/crypto/pbkdf2"
1818

19-
p "gopkg.in/dancannon/gorethink.v1/ql2"
19+
p "gopkg.in/dancannon/gorethink.v2/internal/ql2"
2020
)
2121

2222
type HandshakeVersion int

cursor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"reflect"
88
"sync"
99

10-
"gopkg.in/dancannon/gorethink.v1/encoding"
11-
p "gopkg.in/dancannon/gorethink.v1/ql2"
10+
"gopkg.in/dancannon/gorethink.v2/internal/encoding"
11+
p "gopkg.in/dancannon/gorethink.v2/internal/ql2"
1212
)
1313

1414
var (

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Package gorethink implements a Go driver for RethinkDB
22
//
3-
// Current version: v1.4.1 (RethinkDB v2.2)
3+
// Current version: v2.0.0 (RethinkDB v2.3)
44
// For more in depth information on how to use RethinkDB check out the API docs
55
// at http://rethinkdb.com/api
66
package gorethink

errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"fmt"
88
"strings"
99

10-
p "gopkg.in/dancannon/gorethink.v1/ql2"
10+
p "gopkg.in/dancannon/gorethink.v2/internal/ql2"
1111
)
1212

1313
var (

gorethink.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/Sirupsen/logrus"
77

8-
"gopkg.in/dancannon/gorethink.v1/encoding"
8+
"gopkg.in/dancannon/gorethink.v2/internal/encoding"
99
)
1010

1111
var (

0 commit comments

Comments
 (0)