Skip to content

Commit

Permalink
Release redis.v3 beta.
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed May 14, 2015
1 parent b4f481e commit 18ea75d
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ install:
- go get github.com/onsi/ginkgo
- go get github.com/onsi/gomega
- mkdir -p $HOME/gopath/src/gopkg.in
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v2
- cd $HOME/gopath/src/gopkg.in/redis.v2
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v3
- cd $HOME/gopath/src/gopkg.in/redis.v3
2 changes: 1 addition & 1 deletion cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v2"
"gopkg.in/redis.v3"
)

type clusterScenario struct {
Expand Down
3 changes: 2 additions & 1 deletion command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import (

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"gopkg.in/redis.v2"

"gopkg.in/redis.v3"
)

var _ = Describe("Command", func() {
Expand Down
3 changes: 2 additions & 1 deletion commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import (

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"gopkg.in/redis.v2"

"gopkg.in/redis.v3"
)

var _ = Describe("Commands", func() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strconv"

"gopkg.in/redis.v2"
"gopkg.in/redis.v3"
)

var client *redis.Client
Expand Down
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v2"
"gopkg.in/redis.v3"
)

const redisAddr = ":6379"
Expand Down Expand Up @@ -67,7 +67,7 @@ var _ = AfterSuite(func() {

func TestGinkgoSuite(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "gopkg.in/redis.v2")
RunSpecs(t, "gopkg.in/redis.v3")
}

//------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions multi_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package redis_test

import (
"gopkg.in/redis.v2"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v3"
)

var _ = Describe("Multi", func() {
Expand Down
4 changes: 2 additions & 2 deletions pipeline_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"strconv"
"sync"

"gopkg.in/redis.v2"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v3"
)

var _ = Describe("Pipelining", func() {
Expand Down
2 changes: 1 addition & 1 deletion pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v2"
"gopkg.in/redis.v3"
)

var _ = Describe("Pool", func() {
Expand Down
4 changes: 2 additions & 2 deletions pubsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"net"
"time"

"gopkg.in/redis.v2"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v3"
)

var _ = Describe("PubSub", func() {
Expand Down
2 changes: 1 addition & 1 deletion redis.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package redis // import "gopkg.in/redis.v2"
package redis // import "gopkg.in/redis.v3"

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion redis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"gopkg.in/redis.v2"
"gopkg.in/redis.v3"
)

var _ = Describe("Client", func() {
Expand Down
3 changes: 2 additions & 1 deletion sentinel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ package redis_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"gopkg.in/redis.v2"

"gopkg.in/redis.v3"
)

var _ = Describe("Sentinel", func() {
Expand Down

0 comments on commit 18ea75d

Please sign in to comment.