diff --git a/go.mod b/go.mod index 1960374..c326bf6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/zerodha/fastcache/v2 +module github.com/zerodha/fastcache/v3 go 1.12 diff --git a/stores/goredis/redis.go b/stores/goredis/redis.go index 8bbeccd..1a402af 100644 --- a/stores/goredis/redis.go +++ b/stores/goredis/redis.go @@ -19,7 +19,7 @@ import ( "time" "github.com/go-redis/redis/v8" - "github.com/zerodha/fastcache/v2" + "github.com/zerodha/fastcache/v3" ) const ( diff --git a/stores/goredis/redis_test.go b/stores/goredis/redis_test.go index e9c4758..7a9f66a 100644 --- a/stores/goredis/redis_test.go +++ b/stores/goredis/redis_test.go @@ -8,7 +8,7 @@ import ( "github.com/alicebob/miniredis" "github.com/go-redis/redis/v8" "github.com/stretchr/testify/assert" - "github.com/zerodha/fastcache/v2" + "github.com/zerodha/fastcache/v3" ) func newTestRedis(t *testing.T) *redis.Client { diff --git a/stores/redis/redis.go b/stores/redis/redis.go index 3d32431..da9e36f 100644 --- a/stores/redis/redis.go +++ b/stores/redis/redis.go @@ -17,7 +17,7 @@ import ( "time" "github.com/gomodule/redigo/redis" - "github.com/zerodha/fastcache/v2" + "github.com/zerodha/fastcache/v3" ) const (