diff --git a/CHANGELOG.md b/CHANGELOG.md index 23abc80..4a740bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,16 @@ ## 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 +* 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). ## v0.10.0 - 2020-07-17 diff --git a/Cargo.toml b/Cargo.toml index e2f6f0d..dfedfe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui" -version = "0.10.0" +version = "0.11.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 ba563d3..6667a02 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! tui = "0.10" +//! tui = "0.11" //! termion = "1.5" //! ``` //! @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! 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.