Skip to content
This repository was archived by the owner on Aug 6, 2023. It is now read-only.

Commit 57862ee

Browse files
committed
Release v0.11.0
1 parent 11df94d commit 57862ee

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22

33
## To be released
44

5+
## v0.11.0 - 2020-09-20
6+
7+
### Features
8+
9+
* Add the dot character as a new type of canvas marker (#350).
10+
* Support more style modifiers on Windows (#368).
11+
512
### Fixes
613

14+
* Clearing the terminal through `Terminal::clear` will cause the whole UI to be redrawn (#380).
715
* Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).
816

917
## v0.10.0 - 2020-07-17

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Florian Dehau <work@fdehau.com>"]
55
description = """
66
A library to build rich terminal user interfaces or dashboards

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! tui = "0.10"
12+
//! tui = "0.11"
1313
//! termion = "1.5"
1414
//! ```
1515
//!
@@ -20,7 +20,7 @@
2020
//! ```toml
2121
//! [dependencies]
2222
//! crossterm = "0.17"
23-
//! tui = { version = "0.10", default-features = false, features = ['crossterm'] }
23+
//! tui = { version = "0.11", default-features = false, features = ['crossterm'] }
2424
//! ```
2525
//!
2626
//! The same logic applies for all other available backends.

0 commit comments

Comments
 (0)