Release v0.13.0

pull/415/head v0.13.0
Florian Dehau 4 years ago
parent 5a9b59866b
commit 8543523f18

@ -2,6 +2,18 @@
## To be released
## v0.13.0 - 2020-11-14
### Features
* Add `LineGauge` widget which is a more compact variant of the existing `Gauge`.
* Bump `crossterm` to 0.18
### Fixes
* Take into account the borders of the `Table` widget when the widths of columns is controlled by
`Percentage` and `Ratio` constraints.
## v0.12.0 - 2020-09-27
### Features

@ -1,6 +1,6 @@
[package]
name = "tui"
version = "0.12.0"
version = "0.13.0"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards

@ -9,7 +9,7 @@
//!
//! ```toml
//! [dependencies]
//! tui = "0.12"
//! tui = "0.13"
//! termion = "1.5"
//! ```
//!
@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! crossterm = "0.18"
//! tui = { version = "0.12", default-features = false, features = ['crossterm'] }
//! tui = { version = "0.13", default-features = false, features = ['crossterm'] }
//! ```
//!
//! The same logic applies for all other available backends.

Loading…
Cancel
Save