Release v0.12.0

pull/390/head v0.12.0
Florian Dehau 4 years ago
parent c4cd0a5f31
commit 51b691e7ac

@ -2,9 +2,22 @@
## To be released ## To be released
## v0.12.0 - 2020-09-27
### Features
* Make it easier to work with string with multiple lines in `Text` (#361).
### Fixes
* Fix a style leak in `Graph` so components drawn on top of the plotted data (i.e legend and axis
titles) are not affected by the style of the `Dataset`s (#388).
* Make sure `BarChart` shows bars with the max height only when the plotted data is actually equal
to the max (#383).
## v0.11.0 - 2020-09-20 ## v0.11.0 - 2020-09-20
### Features ### Features
* Add the dot character as a new type of canvas marker (#350). * Add the dot character as a new type of canvas marker (#350).
* Support more style modifiers on Windows (#368). * Support more style modifiers on Windows (#368).

@ -1,6 +1,6 @@
[package] [package]
name = "tui" name = "tui"
version = "0.11.0" version = "0.12.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.11" //! tui = "0.12"
//! termion = "1.5" //! termion = "1.5"
//! ``` //! ```
//! //!
@ -20,7 +20,7 @@
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! crossterm = "0.17" //! crossterm = "0.17"
//! tui = { version = "0.11", default-features = false, features = ['crossterm'] } //! tui = { version = "0.12", 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