From 0ed23db6f45b03f752c9d675c2431454ac8f82a9 Mon Sep 17 00:00:00 2001 From: nexustar Date: Sat, 26 Aug 2023 01:50:59 +0800 Subject: [PATCH] bump version to v1.13.0 (#2266) --- CHANGELOG.md | 21 +++++++++++++++++++++ pkg/version/version.go | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f076ea746..c84df37b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ TiUP Changelog +## [1.13.0] 2023-08-26 + +### New Features + +- Support run components without tiup in `tiup` (#2265, @nexustar) +- Support tiproxy in `tiup-playground` (#2202, @xhebox) +- Show warning and continue if cannot delete data dir when destroy/scale-in instead of error and exit in `tiup-cluster` (#2256, @nexustar) +- Support specifying package name of components in `tiup-cluster` (#2236, @nexustar) +- playground: support microservices mode in `tiup-playground` (#2226, @rleungx) + +### Fixes + +- Fix the issue meta backup is failed when symbolic links exist in meta dir in `tiup-cluster` (#2255, @@KanShiori) +- Fix node filter on exec in `tiup-cluster` (#2251, @nexustar) + +### Improvements + +- Move to Go 1.21 (#2249, @dveeden) +- Upgrade TiCDC before TiKV and PD when cluster is equal or greater than v5.1.0 in `tiup-cluster` (#2253, @KanShiori) +- progress: Add option to add error detail (#2203, @dveeden) + ## [1.12.5] 2023-7-17 ### Fix diff --git a/pkg/version/version.go b/pkg/version/version.go index 107925ed68..07dd9d7118 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -21,9 +21,9 @@ var ( // TiUPVerMajor is the major version of TiUP TiUPVerMajor = 1 // TiUPVerMinor is the minor version of TiUP - TiUPVerMinor = 12 + TiUPVerMinor = 13 // TiUPVerPatch is the patch version of TiUP - TiUPVerPatch = 5 + TiUPVerPatch = 0 // TiUPVerName is an alternative name of the version TiUPVerName = "tiup" // GitHash is the current git commit hash