From f09863faa0e9bf36955d3d2773b15b887ae32153 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Fri, 1 Jan 2021 14:35:07 +0100 Subject: [PATCH] Release v0.14.0 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 7 ++++--- src/lib.rs | 4 ++-- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20d592c..501342c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## To be released +## v0.14.0 - 2021-01-01 + ### Breaking changes #### New API for the Table widget @@ -61,6 +63,16 @@ You may want to look at the documentation of the different types to get a better - [`Row`](https://docs.rs/tui/*/tui/widgets/struct.Row.html) - [`Cell`](https://docs.rs/tui/*/tui/widgets/struct.Cell.html) +### Fixes + +- Fix handling of Non Breaking Space (NBSP) in wrapped text in `Paragraph` widget. + +### Features + +- Add `Style::reset` to create a `Style` resetting all styling properties when applied. +- Add an option to render the `Gauge` widget with unicode blocks. +- Manage common project tasks with `cargo-make` rather than `make` for easier on-boarding. + ## v0.13.0 - 2020-11-14 ### Features diff --git a/Cargo.toml b/Cargo.toml index 5c8a92a..6ed2404 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,16 @@ [package] name = "tui" -version = "0.13.0" +version = "0.14.0" authors = ["Florian Dehau "] description = """ A library to build rich terminal user interfaces or dashboards """ -documentation = "https://docs.rs/tui/0.10.0/tui/" +documentation = "https://docs.rs/tui/0.14.0/tui/" keywords = ["tui", "terminal", "dashboard"] repository = "https://github.com/fdehau/tui-rs" +readme = "README.md" license = "MIT" -exclude = ["assets/*", ".github"] +exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"] autoexamples = true edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 90664e5..422598a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! tui = "0.13" +//! tui = "0.14" //! termion = "1.5" //! ``` //! @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! crossterm = "0.18" -//! tui = { version = "0.13", default-features = false, features = ['crossterm'] } +//! tui = { version = "0.14", default-features = false, features = ['crossterm'] } //! ``` //! //! The same logic applies for all other available backends.