Skip to content

Commit 3325414

Browse files
committed
version: bump up to 3.6.0-rc.3
Signed-off-by: Ivan Valdes <[email protected]>
1 parent 257cdd1 commit 3325414

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

api/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
var (
2727
// MinClusterVersion is the min cluster version this etcd binary is compatible with.
2828
MinClusterVersion = "3.0.0"
29-
Version = "3.6.0-rc.2"
29+
Version = "3.6.0-rc.3"
3030
APIVersion = "unknown"
3131

3232
// Git SHA Value will be set during build

client/v3/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ require (
1010
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1
1111
github.com/prometheus/client_golang v1.20.5
1212
github.com/stretchr/testify v1.10.0
13-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
14-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
13+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
14+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
1515
go.uber.org/zap v1.27.0
1616
google.golang.org/grpc v1.70.0
1717
sigs.k8s.io/yaml v1.4.0

etcdctl/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ require (
1212
github.com/spf13/cobra v1.8.1
1313
github.com/spf13/pflag v1.0.6
1414
github.com/stretchr/testify v1.10.0
15-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
16-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
17-
go.etcd.io/etcd/client/v3 v3.6.0-rc.2
18-
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.2
15+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
16+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
17+
go.etcd.io/etcd/client/v3 v3.6.0-rc.3
18+
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.3
1919
go.uber.org/zap v1.27.0
2020
golang.org/x/time v0.9.0
2121
google.golang.org/grpc v1.70.0

etcdutl/go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ require (
2727
github.com/spf13/cobra v1.8.1
2828
github.com/stretchr/testify v1.10.0
2929
go.etcd.io/bbolt v1.4.0
30-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
31-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
32-
go.etcd.io/etcd/client/v3 v3.6.0-rc.2
33-
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.2
34-
go.etcd.io/etcd/server/v3 v3.6.0-rc.2
30+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
31+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
32+
go.etcd.io/etcd/client/v3 v3.6.0-rc.3
33+
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.3
34+
go.etcd.io/etcd/server/v3 v3.6.0-rc.3
3535
go.etcd.io/raft/v3 v3.6.0
3636
go.uber.org/zap v1.27.0
3737
)

go.mod

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ require (
2323
github.com/spf13/cobra v1.8.1
2424
github.com/stretchr/testify v1.10.0
2525
go.etcd.io/bbolt v1.4.0
26-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
27-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
28-
go.etcd.io/etcd/client/v3 v3.6.0-rc.2
29-
go.etcd.io/etcd/etcdctl/v3 v3.6.0-rc.2
30-
go.etcd.io/etcd/etcdutl/v3 v3.6.0-rc.2
31-
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.2
32-
go.etcd.io/etcd/server/v3 v3.6.0-rc.2
33-
go.etcd.io/etcd/tests/v3 v3.6.0-rc.2
26+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
27+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
28+
go.etcd.io/etcd/client/v3 v3.6.0-rc.3
29+
go.etcd.io/etcd/etcdctl/v3 v3.6.0-rc.3
30+
go.etcd.io/etcd/etcdutl/v3 v3.6.0-rc.3
31+
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.3
32+
go.etcd.io/etcd/server/v3 v3.6.0-rc.3
33+
go.etcd.io/etcd/tests/v3 v3.6.0-rc.3
3434
go.etcd.io/raft/v3 v3.6.0
3535
go.uber.org/zap v1.27.0
3636
golang.org/x/time v0.9.0

pkg/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/spf13/cobra v1.8.1
1111
github.com/spf13/pflag v1.0.6
1212
github.com/stretchr/testify v1.10.0
13-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
13+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
1414
go.uber.org/zap v1.27.0
1515
google.golang.org/grpc v1.70.0
1616
)

server/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ require (
2626
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802
2727
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2
2828
go.etcd.io/bbolt v1.4.0
29-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
30-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
31-
go.etcd.io/etcd/client/v3 v3.6.0-rc.2
32-
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.2
29+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
30+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
31+
go.etcd.io/etcd/client/v3 v3.6.0-rc.3
32+
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.3
3333
go.etcd.io/raft/v3 v3.6.0
3434
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0
3535
go.opentelemetry.io/otel v1.34.0

tests/go.mod

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ require (
2828
github.com/soheilhy/cmux v0.1.5
2929
github.com/stretchr/testify v1.10.0
3030
go.etcd.io/bbolt v1.4.0
31-
go.etcd.io/etcd/api/v3 v3.6.0-rc.2
32-
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.2
31+
go.etcd.io/etcd/api/v3 v3.6.0-rc.3
32+
go.etcd.io/etcd/client/pkg/v3 v3.6.0-rc.3
3333
go.etcd.io/etcd/client/v2 v2.305.20
34-
go.etcd.io/etcd/client/v3 v3.6.0-rc.2
35-
go.etcd.io/etcd/etcdctl/v3 v3.6.0-rc.2
36-
go.etcd.io/etcd/etcdutl/v3 v3.6.0-rc.2
37-
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.2
38-
go.etcd.io/etcd/server/v3 v3.6.0-rc.2
34+
go.etcd.io/etcd/client/v3 v3.6.0-rc.3
35+
go.etcd.io/etcd/etcdctl/v3 v3.6.0-rc.3
36+
go.etcd.io/etcd/etcdutl/v3 v3.6.0-rc.3
37+
go.etcd.io/etcd/pkg/v3 v3.6.0-rc.3
38+
go.etcd.io/etcd/server/v3 v3.6.0-rc.3
3939
go.etcd.io/gofail v0.2.0
4040
go.etcd.io/raft/v3 v3.6.0
4141
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0

0 commit comments

Comments
 (0)