pingcap / docs-tidb-operator

Documentation for TiDB on Kubernetes in both English and Chinese.
https://docs.pingcap.com/tidb-in-kubernetes
Other
46 stars 118 forks source link

en,zh: bump operator to v1.6.0-beta.1 #2521

Closed csuzhangxc closed 3 months ago

csuzhangxc commented 3 months ago

First-time contributors' checklist

What is changed, added, or deleted? (Required)

find . -type f | xargs sed -i "s/v1.5.2/v1.6.0-beta.1/g"
find . -type f | xargs sed -i "s/tidb-operator\/master/tidb-operator\/v1.6.0-beta.1/g"
find . -type f | xargs sed -i "s/tidb-operator\/blob\/master/tidb-operator\/blob\/v1.6.0-beta.1/g"
git checkout -- zh/releases en/releases

Which TiDB Operator version(s) do your changes apply to? (Required)

What is the related PR or file link(s)?

ti-chi-bot[bot] commented 3 months ago

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: Once this PR has been reviewed and has the lgtm label, please ask for approval from csuzhangxc, ensuring that each of them provides their approval before proceeding. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files: - **[OWNERS](https://github.com/pingcap/docs-tidb-operator/blob/master/OWNERS)** Approvers can indicate their approval by writing `/approve` in a comment Approvers can cancel approval by writing `/approve cancel` in a comment
Oreoxmt commented 3 months ago

@csuzhangxc The branches of the docs-tidb-operator and tidb-operator repositories are not exactly the same. To avoid incorrectly modifying the links of docs-tidb-operator, it is recommended to update the commands to:

find . -type f | xargs sed -i "s/v1.5.2/v1.6.0-beta.1/g"
find . -type f | xargs sed -i "s/\/tidb-operator\/master/\/tidb-operator\/v1.6.0-beta.1/g"
find . -type f | xargs sed -i "s/\/tidb-operator\/blob\/master/\/tidb-operator\/blob\/v1.6.0-beta.1/g"
find . -type f | xargs sed -i "s/\/tidb-operator\/tree\/master/\/tidb-operator\/tree\/v1.6.0-beta.1/g"
git checkout -- zh/releases en/releases