Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a29d91d

Browse files
authoredMar 20, 2025··
release 9.7.3, retract 9.7.2 (#3314)
1 parent ce3034c commit a29d91d

File tree

12 files changed

+23
-16
lines changed

12 files changed

+23
-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.7.2
8+
github.com/redis/go-redis/v9 v9.7.3
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.7.2
7+
require github.com/redis/go-redis/v9 v9.7.3
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.7.2
7+
require github.com/redis/go-redis/v9 v9.7.3
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.7.2
13-
github.com/redis/go-redis/v9 v9.7.2
12+
github.com/redis/go-redis/extra/redisotel/v9 v9.7.3
13+
github.com/redis/go-redis/v9 v9.7.3
1414
github.com/uptrace/uptrace-go v1.21.0
1515
go.opentelemetry.io/otel v1.22.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.19.0 // indirect
26-
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.2 // indirect
26+
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.3 // indirect
2727
go.opentelemetry.io/contrib/instrumentation/runtime v0.46.1 // indirect
2828
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect
2929
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.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.7.2
7+
require github.com/redis/go-redis/v9 v9.7.3
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.7.2
9+
github.com/redis/go-redis/v9 v9.7.3
1010
)
1111

1212
require (

‎extra/rediscensus/go.mod

+3-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.7.2
11-
github.com/redis/go-redis/v9 v9.7.2
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.3
11+
github.com/redis/go-redis/v9 v9.7.3
1212
go.opencensus.io v0.24.0
1313
)
1414

@@ -20,4 +20,5 @@ require (
2020

2121
retract (
2222
v9.5.3 // This version was accidentally released.
23+
v9.7.2 // This version was accidentally released.
2324
)

‎extra/rediscmd/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../..
77
require (
88
github.com/bsm/ginkgo/v2 v2.12.0
99
github.com/bsm/gomega v1.27.10
10-
github.com/redis/go-redis/v9 v9.7.2
10+
github.com/redis/go-redis/v9 v9.7.3
1111
)
1212

1313
require (
@@ -17,4 +17,5 @@ require (
1717

1818
retract (
1919
v9.5.3 // This version was accidentally released.
20+
v9.7.2 // This version was accidentally released.
2021
)

‎extra/redisotel/go.mod

+6-3
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.7.2
11-
github.com/redis/go-redis/v9 v9.7.2
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.3
11+
github.com/redis/go-redis/v9 v9.7.3
1212
go.opentelemetry.io/otel v1.22.0
1313
go.opentelemetry.io/otel/metric v1.22.0
1414
go.opentelemetry.io/otel/sdk v1.22.0
@@ -23,4 +23,7 @@ require (
2323
golang.org/x/sys v0.16.0 // indirect
2424
)
2525

26-
retract v9.5.3 // This version was accidentally released.
26+
retract (
27+
v9.5.3 // This version was accidentally released.
28+
v9.7.2 // This version was accidentally released.
29+
)

‎extra/redisprometheus/go.mod

+2-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.7.2
9+
github.com/redis/go-redis/v9 v9.7.3
1010
)
1111

1212
require (
@@ -24,4 +24,5 @@ require (
2424

2525
retract (
2626
v9.5.3 // This version was accidentally released.
27+
v9.7.2 // This version was accidentally released.
2728
)

‎go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ require (
1010
)
1111

1212
retract (
13+
v9.7.2 // This version was accidentally released. Please use version 9.7.3 instead.
1314
v9.5.4 // This version was accidentally released. Please use version 9.6.0 instead.
1415
v9.5.3 // This version was accidentally released. Please use version 9.6.0 instead.
1516
)

‎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.7.2"
5+
return "9.7.3"
66
}

0 commit comments

Comments
 (0)
Please sign in to comment.