Bump version.

This commit is contained in:
Vladimir Mihailenco 2014-07-02 18:04:04 +03:00
parent ac192c726d
commit 1b515b695a
4 changed files with 5 additions and 4 deletions

View File

@ -13,4 +13,5 @@ install:
- go get github.com/golang/glog
- go get gopkg.in/bufio.v1
- go get gopkg.in/check.v1
- go get gopkg.in/redis.v1
- mkdir -p $HOME/gopath/src/gopkg.in
- ln -s `pwd` $HOME/gopath/src/gopkg.in/redis.v2

View File

@ -1,2 +1,2 @@
all:
go test gopkg.in/redis.v1
go test gopkg.in/redis.v2

View File

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
"gopkg.in/redis.v1"
"gopkg.in/redis.v2"
)
var client *redis.Client

View File

@ -11,7 +11,7 @@ import (
"testing"
"time"
"gopkg.in/redis.v1"
"gopkg.in/redis.v2"
. "gopkg.in/check.v1"
)