diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aefd1ebfa..4f93a704ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,19 @@ TiUP Changelog +## [1.9.5] 2022-05-10 + +### Fix + +- Report error when multiple pump nodes with the same `ip:port` found in `tiup-cluster` ([#1856](https://github.com/pingcap/tiup/pull/1856), [@srstack](https://github.com/srstack)) + +### Improvements + +- Check node status concurrently and support custom timeout for `display` in `tiup-cluster` ([#1867](https://github.com/pingcap/tiup/pull/1867), [@srstack](https://github.com/srstack)) +- Support `tidb-lightning` in `tiup-ctl` ([#1863](https://github.com/pingcap/tiup/pull/1863), [@nexustar](https://github.com/nexustar)) + ## [1.9.4] 2022-04-12 -## Fixes +### Fixes - Fix copy error when file is read only in `tiup-playground` ([#1816](https://github.com/pingcap/tiup/pull/1816), [@breeswish](https://github.com/breeswish)) - Fix `data-dir` not properly handled for TiCDC v6.0.0 in `tiup-cluster` ([#1838](https://github.com/pingcap/tiup/pull/1838), [@overvenus](https://github.com/overvenus)) diff --git a/pkg/version/version.go b/pkg/version/version.go index 9782d52200..be1219c9fe 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -23,7 +23,7 @@ var ( // TiUPVerMinor is the minor version of TiUP TiUPVerMinor = 9 // TiUPVerPatch is the patch version of TiUP - TiUPVerPatch = 4 + TiUPVerPatch = 5 // TiUPVerName is an alternative name of the version TiUPVerName = "tiup" // GitHash is the current git commit hash