Skip to content

Commit e425bac

Browse files
Update check.go
1 parent cc590b7 commit e425bac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/version/check.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ import (
3838
var (
3939
// minPDVersion is the version of the minimal compatible PD.
4040
// The min version should be 7.x because we adapt to tidb concurrency ddl implementations.
41-
minPDVersion = semver.New("5.1.0-alpha")
41+
minPDVersion = semver.New("7.1.0-alpha")
4242
// maxPDVersion is the version of the maximum compatible PD.
4343
// Compatible versions are in [minPDVersion, maxPDVersion)
4444
maxPDVersion = semver.New("10.0.0")
4545

4646
// MinTiKVVersion is the version of the minimal compatible TiKV.
4747
// The min version should be 7.x because we adapt to tidb concurrency ddl implementations.
48-
MinTiKVVersion = semver.New("5.1.0-alpha")
48+
MinTiKVVersion = semver.New("7.1.0-alpha")
4949
// maxTiKVVersion is the version of the maximum compatible TiKV.
5050
// Compatible versions are in [MinTiKVVersion, maxTiKVVersion)
5151
maxTiKVVersion = semver.New("10.0.0")
@@ -55,7 +55,7 @@ var (
5555
defaultTiCDCVersion = semver.New("4.0.1")
5656

5757
// MinTiCDCVersion is the version of the minimal allowed TiCDC version.
58-
MinTiCDCVersion = semver.New("5.3.0-alpha")
58+
MinTiCDCVersion = semver.New("7.3.0-alpha")
5959
// MaxTiCDCVersion is the version of the maximum allowed TiCDC version.
6060
// for version `x.y.z`, max allowed `x+2.0.0`
6161
MaxTiCDCVersion = semver.New("10.0.0-alpha")

0 commit comments

Comments
 (0)