From 90a6a8f2d6667dd44e4e58f9dbe1d0a847bd6d18 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Sun, 2 May 2021 18:55:29 +0200 Subject: [PATCH] Release v0.15.0 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 4 ++-- src/lib.rs | 4 ++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 501342c..da5085c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## To be released +## v0.15.0 - 2021-05-02 + +### Features + +* Update `crossterm` to `0.19`. +* Update `rand` to `0.8`. +* Add a read-only view of the terminal state after the draw call (#440). + +### Fixes + +* Remove compile warning in `TestBackend::assert_buffer` (#466). + ## v0.14.0 - 2021-01-01 ### Breaking changes diff --git a/Cargo.toml b/Cargo.toml index a799a4c..8eb85fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tui" -version = "0.14.0" +version = "0.15.0" authors = ["Florian Dehau "] description = """ A library to build rich terminal user interfaces or dashboards """ -documentation = "https://docs.rs/tui/0.14.0/tui/" +documentation = "https://docs.rs/tui/0.15.0/tui/" keywords = ["tui", "terminal", "dashboard"] repository = "https://github.com/fdehau/tui-rs" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 12b1d7b..8cf9026 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! tui = "0.14" +//! tui = "0.15" //! termion = "1.5" //! ``` //! @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! crossterm = "0.19" -//! tui = { version = "0.14", default-features = false, features = ['crossterm'] } +//! tui = { version = "0.15", default-features = false, features = ['crossterm'] } //! ``` //! //! The same logic applies for all other available backends.