diff --git a/README.md b/README.md index 0d4f6e6..d66718f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A tool to replicate data change from TiDB to Data Warehouses in real-time. ## Supported Storage Service -You can also export data to cloud storage service only. +You can also export data to cloud object storage only. - [AWS S3](https://github.com/pingcap-inc/tidb2dw/blob/main/docs/s3.md) - [Google Cloud Storage](https://github.com/pingcap-inc/tidb2dw/blob/main/docs/gcs.md) @@ -20,13 +20,16 @@ You can also export data to cloud storage service only. ```bash # Linux AMD64: -wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.2/tidb2dw-v0.0.2-linux-amd64 +wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.3/tidb2dw-v0.0.3-linux-amd64 # Linux ARM64: -wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.2/tidb2dw-v0.0.2-linux-arm64 +wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.3/tidb2dw-v0.0.3-linux-arm64 # MacOS AMD64: -wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.2/tidb2dw-v0.0.2-darwin-amd64 +wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.3/tidb2dw-v0.0.3-darwin-amd64 + +# MacOS ARM64: +wget https://github.com/pingcap-inc/tidb2dw/releases/download/v0.0.3/tidb2dw-v0.0.3-darwin-arm64 ``` ## Build from source diff --git a/version/version.go b/version/version.go index 2ffe880..d36ef3f 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ var ( // TiDB2DWVerMinor is the minor version of TiDB2DW TiDB2DWVerMinor = 0 // TiDB2DWVerPatch is the patch version of TiDB2DW - TiDB2DWVerPatch = 2 + TiDB2DWVerPatch = 3 // TiDB2DWVerName is an alternative name of the version TiDB2DWVerName = "TiDB2DW" // GitHash is the current git commit hash