Skip to content

Commit 18ea75d

Browse files
committed
Release redis.v3 beta.
1 parent b4f481e commit 18ea75d

13 files changed

+21
-18
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ install:
1313
- go get github.com/onsi/ginkgo
1414
- go get github.com/onsi/gomega
1515
- mkdir -p $HOME/gopath/src/gopkg.in
16-
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v2
17-
- cd $HOME/gopath/src/gopkg.in/redis.v2
16+
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v3
17+
- cd $HOME/gopath/src/gopkg.in/redis.v3

cluster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
. "github.com/onsi/ginkgo"
1111
. "github.com/onsi/gomega"
1212

13-
"gopkg.in/redis.v2"
13+
"gopkg.in/redis.v3"
1414
)
1515

1616
type clusterScenario struct {

command_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import (
88

99
. "github.com/onsi/ginkgo"
1010
. "github.com/onsi/gomega"
11-
"gopkg.in/redis.v2"
11+
12+
"gopkg.in/redis.v3"
1213
)
1314

1415
var _ = Describe("Command", func() {

commands_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import (
99

1010
. "github.com/onsi/ginkgo"
1111
. "github.com/onsi/gomega"
12-
"gopkg.in/redis.v2"
12+
13+
"gopkg.in/redis.v3"
1314
)
1415

1516
var _ = Describe("Commands", func() {

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strconv"
66

7-
"gopkg.in/redis.v2"
7+
"gopkg.in/redis.v3"
88
)
99

1010
var client *redis.Client

main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
. "github.com/onsi/ginkgo"
1515
. "github.com/onsi/gomega"
1616

17-
"gopkg.in/redis.v2"
17+
"gopkg.in/redis.v3"
1818
)
1919

2020
const redisAddr = ":6379"
@@ -67,7 +67,7 @@ var _ = AfterSuite(func() {
6767

6868
func TestGinkgoSuite(t *testing.T) {
6969
RegisterFailHandler(Fail)
70-
RunSpecs(t, "gopkg.in/redis.v2")
70+
RunSpecs(t, "gopkg.in/redis.v3")
7171
}
7272

7373
//------------------------------------------------------------------------------

multi_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package redis_test
22

33
import (
4-
"gopkg.in/redis.v2"
5-
64
. "github.com/onsi/ginkgo"
75
. "github.com/onsi/gomega"
6+
7+
"gopkg.in/redis.v3"
88
)
99

1010
var _ = Describe("Multi", func() {

pipeline_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"strconv"
55
"sync"
66

7-
"gopkg.in/redis.v2"
8-
97
. "github.com/onsi/ginkgo"
108
. "github.com/onsi/gomega"
9+
10+
"gopkg.in/redis.v3"
1111
)
1212

1313
var _ = Describe("Pipelining", func() {

pool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
. "github.com/onsi/ginkgo"
99
. "github.com/onsi/gomega"
1010

11-
"gopkg.in/redis.v2"
11+
"gopkg.in/redis.v3"
1212
)
1313

1414
var _ = Describe("Pool", func() {

pubsub_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"net"
55
"time"
66

7-
"gopkg.in/redis.v2"
8-
97
. "github.com/onsi/ginkgo"
108
. "github.com/onsi/gomega"
9+
10+
"gopkg.in/redis.v3"
1111
)
1212

1313
var _ = Describe("PubSub", func() {

0 commit comments

Comments
 (0)