Skip to content

Commit ce8eb0a

Browse files
bump version 1.7.0 (#1619)
1 parent c5c8a71 commit ce8eb0a

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
TiUP Changelog
22

3+
## [1.7.0] 2021-11-15
4+
5+
### New Features
6+
7+
- Support deploying and managing TLS enabled TiDB cluster with TiFlash nodes ([#1594](https://github.com/pingcap/tiup/pull/1594), [@nexustar](https://github.com/nexustar))
8+
- Support rendering template for local deployment with vairables in `tiup-cluster` and `tiup-dm` ([#1596](https://github.com/pingcap/tiup/pull/1596), [@makocchi-git](https://github.com/makocchi-git))
9+
- [experimental] Support optionally enable next-generation monitor (`ng-monitor`) for latest TiDB releases ([#1601](https://github.com/pingcap/tiup/pull/1601), [@nexustar](https://github.com/nexustar))
10+
- [experimental] Support JSON output format for `tiup-cluster` and `tiup-dm` ([#1617](https://github.com/pingcap/tiup/pull/1617), [@AstroProfundis](https://github.com/AstroProfundis))
11+
12+
### Fixes
13+
14+
- Remove warning about tag argument for `tiup-playground` ([#1606](https://github.com/pingcap/tiup/pull/1606), [@nexustar](https://github.com/nexustar))
15+
- Set `--external-url` for AlertManager in `tiup-cluster` ([#1608](https://github.com/pingcap/tiup/pull/1608), [@reAsOn2010](https://github.com/reAsOn2010))
16+
- Fix auto detecting of system arch fail in certain circumstances ([#1610](https://github.com/pingcap/tiup/pull/1610), [@AstroProfundis](https://github.com/AstroProfundis))
17+
18+
### Improvements
19+
20+
- Support getting cluster ID from PD in `pdapi` package ([#1573](https://github.com/pingcap/tiup/pull/1573) [#1574](https://github.com/pingcap/tiup/pull/1574), [@nexustar](https://github.com/nexustar); [#1580](https://github.com/pingcap/tiup/pull/1580), [@AstroProfundis](https://github.com/AstroProfundis))
21+
- Accurately get status of TiFlash nodes during operations ([#1600](https://github.com/pingcap/tiup/pull/1600), [@AstroProfundis](https://github.com/AstroProfundis))
22+
323
## [1.6.1] 2021-10-21
424

525
### Fixes

pkg/version/version.go

+2-2
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 = 6
24+
TiUPVerMinor = 7
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)