Release v0.14.0

pull/439/head v0.14.0
Florian Dehau 3 years ago
parent eb1e3be722
commit f09863faa0

@ -2,6 +2,8 @@
## To be released ## To be released
## v0.14.0 - 2021-01-01
### Breaking changes ### Breaking changes
#### New API for the Table widget #### 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) - [`Row`](https://docs.rs/tui/*/tui/widgets/struct.Row.html)
- [`Cell`](https://docs.rs/tui/*/tui/widgets/struct.Cell.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 ## v0.13.0 - 2020-11-14
### Features ### Features

@ -1,15 +1,16 @@
[package] [package]
name = "tui" name = "tui"
version = "0.13.0" version = "0.14.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
""" """
documentation = "https://docs.rs/tui/0.10.0/tui/" documentation = "https://docs.rs/tui/0.14.0/tui/"
keywords = ["tui", "terminal", "dashboard"] keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs" repository = "https://github.com/fdehau/tui-rs"
readme = "README.md"
license = "MIT" license = "MIT"
exclude = ["assets/*", ".github"] exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
autoexamples = true autoexamples = true
edition = "2018" edition = "2018"

@ -9,7 +9,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! tui = "0.13" //! tui = "0.14"
//! termion = "1.5" //! termion = "1.5"
//! ``` //! ```
//! //!
@ -20,7 +20,7 @@
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! crossterm = "0.18" //! 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. //! The same logic applies for all other available backends.

Loading…
Cancel
Save