From 51b691e7ac48beb035abacb22c610cac53f023c5 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Sun, 27 Sep 2020 19:45:24 +0200 Subject: [PATCH] Release v0.12.0 --- CHANGELOG.md | 15 ++++++++++++++- Cargo.toml | 2 +- src/lib.rs | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a740bb..18f131f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,22 @@ ## 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 -### Features +### Features * Add the dot character as a new type of canvas marker (#350). * Support more style modifiers on Windows (#368). diff --git a/Cargo.toml b/Cargo.toml index dfedfe7..0a27388 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui" -version = "0.11.0" +version = "0.12.0" authors = ["Florian Dehau "] description = """ A library to build rich terminal user interfaces or dashboards diff --git a/src/lib.rs b/src/lib.rs index 6667a02..ff34987 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! tui = "0.11" +//! tui = "0.12" //! termion = "1.5" //! ``` //! @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! 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.