Release v0.11.0

pull/371/head^2 v0.11.0
Florian Dehau 4 years ago
parent 11df94d601
commit 57862eeda6

@ -2,8 +2,16 @@
## To be released ## To be released
## v0.11.0 - 2020-09-20
### Features
* Add the dot character as a new type of canvas marker (#350).
* Support more style modifiers on Windows (#368).
### Fixes ### Fixes
* Clearing the terminal through `Terminal::clear` will cause the whole UI to be redrawn (#380).
* Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347). * Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).
## v0.10.0 - 2020-07-17 ## v0.10.0 - 2020-07-17

@ -1,6 +1,6 @@
[package] [package]
name = "tui" name = "tui"
version = "0.10.0" version = "0.11.0"
authors = ["Florian Dehau <work@fdehau.com>"] authors = ["Florian Dehau <work@fdehau.com>"]
description = """ description = """
A library to build rich terminal user interfaces or dashboards A library to build rich terminal user interfaces or dashboards

@ -9,7 +9,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! tui = "0.10" //! tui = "0.11"
//! termion = "1.5" //! termion = "1.5"
//! ``` //! ```
//! //!
@ -20,7 +20,7 @@
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! crossterm = "0.17" //! crossterm = "0.17"
//! tui = { version = "0.10", default-features = false, features = ['crossterm'] } //! tui = { version = "0.11", default-features = false, features = ['crossterm'] }
//! ``` //! ```
//! //!
//! The same logic applies for all other available backends. //! The same logic applies for all other available backends.

Loading…
Cancel
Save