mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
Release v0.14.0
This commit is contained in:
parent
eb1e3be722
commit
f09863faa0
3 changed files with 18 additions and 5 deletions
12
CHANGELOG.md
12
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
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
[package]
|
||||
name = "tui"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
authors = ["Florian Dehau <work@fdehau.com>"]
|
||||
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"
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue