Skip to content

Commit 21bd40a

Browse files
authored
Version 9.3.0 (#2774)
1 parent 828fd2d commit 21bd40a

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

example/del-keys-without-ttl/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
replace github.com/redis/go-redis/v9 => ../..
66

77
require (
8-
github.com/redis/go-redis/v9 v9.2.1
8+
github.com/redis/go-redis/v9 v9.3.0
99
go.uber.org/zap v1.24.0
1010
)
1111

example/hll/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.2.1
7+
require github.com/redis/go-redis/v9 v9.3.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.2.0 // indirect

example/lua-scripting/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.2.1
7+
require github.com/redis/go-redis/v9 v9.3.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.2.0 // indirect

example/otel/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel
99
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd
1010

1111
require (
12-
github.com/redis/go-redis/extra/redisotel/v9 v9.2.1
13-
github.com/redis/go-redis/v9 v9.2.1
12+
github.com/redis/go-redis/extra/redisotel/v9 v9.3.0
13+
github.com/redis/go-redis/v9 v9.3.0
1414
github.com/uptrace/uptrace-go v1.16.0
1515
go.opentelemetry.io/otel v1.16.0
1616
)
@@ -23,7 +23,7 @@ require (
2323
github.com/go-logr/stdr v1.2.2 // indirect
2424
github.com/golang/protobuf v1.5.3 // indirect
2525
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2 // indirect
26-
github.com/redis/go-redis/extra/rediscmd/v9 v9.2.1 // indirect
26+
github.com/redis/go-redis/extra/rediscmd/v9 v9.3.0 // indirect
2727
go.opentelemetry.io/contrib/instrumentation/runtime v0.42.0 // indirect
2828
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
2929
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.39.0 // indirect

example/redis-bloom/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.2.1
7+
require github.com/redis/go-redis/v9 v9.3.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.2.0 // indirect

example/scan-struct/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66

77
require (
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/redis/go-redis/v9 v9.2.1
9+
github.com/redis/go-redis/v9 v9.3.0
1010
)
1111

1212
require (

extra/rediscensus/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd
88

99
require (
1010
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
11-
github.com/redis/go-redis/extra/rediscmd/v9 v9.2.1
12-
github.com/redis/go-redis/v9 v9.2.1
11+
github.com/redis/go-redis/extra/rediscmd/v9 v9.3.0
12+
github.com/redis/go-redis/v9 v9.3.0
1313
go.opencensus.io v0.24.0
1414
)

extra/rediscmd/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ replace github.com/redis/go-redis/v9 => ../..
77
require (
88
github.com/bsm/ginkgo/v2 v2.7.0
99
github.com/bsm/gomega v1.26.0
10-
github.com/redis/go-redis/v9 v9.2.1
10+
github.com/redis/go-redis/v9 v9.3.0
1111
)

extra/redisotel/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../..
77
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd
88

99
require (
10-
github.com/redis/go-redis/extra/rediscmd/v9 v9.2.1
11-
github.com/redis/go-redis/v9 v9.2.1
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.3.0
11+
github.com/redis/go-redis/v9 v9.3.0
1212
go.opentelemetry.io/otel v1.16.0
1313
go.opentelemetry.io/otel/metric v1.16.0
1414
go.opentelemetry.io/otel/sdk v1.16.0

extra/redisprometheus/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66

77
require (
88
github.com/prometheus/client_golang v1.14.0
9-
github.com/redis/go-redis/v9 v9.2.1
9+
github.com/redis/go-redis/v9 v9.3.0
1010
)
1111

1212
require (

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redis",
3-
"version": "9.2.1",
3+
"version": "9.3.0",
44
"main": "index.js",
55
"repository": "[email protected]:redis/go-redis.git",
66
"author": "Vladimir Mihailenco <[email protected]>",

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package redis
22

33
// Version is the current release version.
44
func Version() string {
5-
return "9.2.1"
5+
return "9.3.0"
66
}

0 commit comments

Comments
 (0)