Release v0.15.0

pull/474/head v0.15.0
Florian Dehau 3 years ago
parent 414386e797
commit 90a6a8f2d6

@ -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

@ -1,11 +1,11 @@
[package]
name = "tui"
version = "0.14.0"
version = "0.15.0"
authors = ["Florian Dehau <work@fdehau.com>"]
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"

@ -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.

Loading…
Cancel
Save