Skip to content

Commit 34222bf

Browse files
authored
release 9.7.3, retract 9.7.2 (#3314) (#3315)
1 parent 11efd6a commit 34222bf

File tree

12 files changed

+34
-20
lines changed

12 files changed

+34
-20
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.1
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.1
7+
require github.com/redis/go-redis/v9 v9.7.3
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.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.1
7+
require github.com/redis/go-redis/v9 v9.7.3
88

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

example/otel/go.mod

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/redis/go-redis/example/otel
22

3-
go 1.19
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
replace github.com/redis/go-redis/v9 => ../..
@@ -10,8 +11,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel
1011
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd
1112

1213
require (
13-
github.com/redis/go-redis/extra/redisotel/v9 v9.7.1
14-
github.com/redis/go-redis/v9 v9.7.1
14+
github.com/redis/go-redis/extra/redisotel/v9 v9.7.3
15+
github.com/redis/go-redis/v9 v9.7.3
1516
github.com/uptrace/uptrace-go v1.21.0
1617
go.opentelemetry.io/otel v1.22.0
1718
)
@@ -24,7 +25,7 @@ require (
2425
github.com/go-logr/stdr v1.2.2 // indirect
2526
github.com/golang/protobuf v1.5.3 // indirect
2627
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
27-
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.1 // indirect
28+
github.com/redis/go-redis/extra/rediscmd/v9 v9.7.3 // indirect
2829
go.opentelemetry.io/contrib/instrumentation/runtime v0.46.1 // indirect
2930
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect
3031
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.1
7+
require github.com/redis/go-redis/v9 v9.7.3
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.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.1
9+
github.com/redis/go-redis/v9 v9.7.3
1010
)
1111

1212
require (

extra/rediscensus/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.1
11-
github.com/redis/go-redis/v9 v9.7.1
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

@@ -18,4 +18,7 @@ require (
1818
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
1919
)
2020

21-
retract v9.5.3 // This version was accidentally released.
21+
retract (
22+
v9.5.3 // This version was accidentally released.
23+
v9.7.2 // This version was accidentally released.
24+
)

extra/rediscmd/go.mod

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ 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.1
10+
github.com/redis/go-redis/v9 v9.7.3
1111
)
1212

1313
require (
1414
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1515
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
1616
)
1717

18-
retract v9.5.3 // This version was accidentally released.
18+
retract (
19+
v9.5.3 // This version was accidentally released.
20+
v9.7.2 // This version was accidentally released.
21+
)

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.1
11-
github.com/redis/go-redis/v9 v9.7.1
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

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

1212
require (
@@ -22,4 +22,7 @@ require (
2222
google.golang.org/protobuf v1.33.0 // indirect
2323
)
2424

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

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

0 commit comments

Comments
 (0)