Skip to content

Commit c3e9fc5

Browse files
authored
bump version to v1.14.0 (#2322)
1 parent 7dfc35b commit c3e9fc5

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
TiUP Changelog
22

3+
## [1.14.0] 2023-11-17
4+
5+
### New Features
6+
7+
- Support use different component versions in `tiup-cluster` (#2010 #2264 #2306, @nexustar)
8+
- Add global listen_host config in `tiup-cluster` and `tiup-dm` (#2303, @nexustar)
9+
- Add gloabl component_sources config in `tiup-cluster` and `tiup-dm` (#2320, @nexustar)
10+
- Support TiDB upgrade API to automatically pause DDL when upgrade in `tiup-cluster`(#2287 #2289, @nexustar)
11+
- Support TiProxy in `tiup-cluster` (#2271, @xhebox)
12+
- Support scheduling service in `tiup-playground` (#2273, @rleungx)
13+
- Support to show numa node when display in `tiup-cluster` and `tiup-dm` (#2295 #2312, @KanShiori)
14+
15+
### Fixes
16+
17+
- Make sure to signal tiproxy to stop in `tiup-playground` (#2318, @dveeden)
18+
- Fix "clone" operation may be missing packages without throwing an error in `tiup` (#2309 #2311, @nexustar)
19+
- Not cache the output of ss -tln command when checking wether components are started/stopped in `tiup-cluster` and `tiup-dm` (#2298, @KanShiori)
20+
- Fix tidb-dashboard listen_host in `tiup-cluster` (#2304, @nexustar)
21+
- Fix tiproxy metrics addr in `tiup-playground` (#2299, @xhebox)
22+
23+
### Improvements
24+
25+
- Upgrade go-sql-driver/mysql version to v1.7.1 (#2246, @srstack)
26+
- Use release version of TiProxy instead of nightly (#2305, @nexustar)
27+
- Use port to probe TiDB in `tiup-playground` (#2296, @KanShiori)
28+
- Add mcs name for pd log in `tiup-playground` (#2310, @HuSharp)
29+
- Not overwrite real error in retry function (#2290, @nexustar)
30+
- Fix alignment of output in `tiup-playground` (#2313, @dveeden)
31+
- ci improve (#2301 #2308 #2316, @nexustar @dveeden)
32+
333
## [1.13.1] 2023-09-25
434

535
### Fixes

pkg/version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ var (
2121
// TiUPVerMajor is the major version of TiUP
2222
TiUPVerMajor = 1
2323
// TiUPVerMinor is the minor version of TiUP
24-
TiUPVerMinor = 13
24+
TiUPVerMinor = 14
2525
// TiUPVerPatch is the patch version of TiUP
26-
TiUPVerPatch = 1
26+
TiUPVerPatch = 0
2727
// TiUPVerName is an alternative name of the version
2828
TiUPVerName = "tiup"
2929
// GitHash is the current git commit hash

0 commit comments

Comments
 (0)