From 6079db5c9a8d8ac8117c2435390db28f08abb0b2 Mon Sep 17 00:00:00 2001 From: wuhuizuo Date: Thu, 25 Jun 2026 13:35:49 +0800 Subject: [PATCH] docs: update Go version requirement to 1.25.10 Update Go version in README_DM.md, README_TiCDC.md, and CONTRIBUTING.md to match go.mod declaration of go 1.25.10. Signed-off-by: wuhuizuo --- CONTRIBUTING.md | 2 +- README_DM.md | 2 +- README_TiCDC.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f1be8f654..524f27aba7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ your contribution accepted. Developing TiDB-CDC requires: -* [Go 1.23+](https://go.dev/doc/code) +* [Go 1.25.10+](https://go.dev/doc/code) * An internet connection to download the dependencies Simply run `make` to build the program. diff --git a/README_DM.md b/README_DM.md index d7c186aa79..ff5f332b54 100644 --- a/README_DM.md +++ b/README_DM.md @@ -19,7 +19,7 @@ To check the code style and build binaries, you can simply run: make build ``` -Note that DM supports building with the Go version `Go >= 1.23`. For unit test preparation, see [Running/Unit Test](dm/tests/README.md#Unit-Test). +Note that DM supports building with the Go version `Go >= 1.25.10`. For unit test preparation, see [Running/Unit Test](dm/tests/README.md#Unit-Test). If you only want to build binaries, you can run: diff --git a/README_TiCDC.md b/README_TiCDC.md index 3ad4bd5195..5acb3a51d1 100644 --- a/README_TiCDC.md +++ b/README_TiCDC.md @@ -27,7 +27,7 @@ $ make cdc $ make test ``` -Note that TiCDC supports building with the Go version `Go >= 1.23`. +Note that TiCDC supports building with the Go version `Go >= 1.25.10`. When TiCDC is built successfully, you can find binary in the `bin` directory. Instructions for unit test and integration test can be found in [Running tests](./tests/integration_tests/README.md).