Release v0.8.0

pull/212/head v0.8.0
Florian Dehau 4 years ago
parent 60b99cfc66
commit 8293cef703

@ -2,6 +2,17 @@
## To be released
## v0.8.0 - 2019-12-15
### Changed
* Bump crossterm to 0.14.
* Add cross symbol to the symbols list.
### Fixed
* Use the value of `title_style` to style the title of `Axis`.
## v0.7.0 - 2019-11-29
### Changed

@ -1,6 +1,6 @@
[package]
name = "tui"
version = "0.7.0"
version = "0.8.0"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards
@ -8,7 +8,7 @@ A library to build rich terminal user interfaces or dashboards
keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs"
license = "MIT"
exclude = ["assets/*", ".travis.yml"]
exclude = ["assets/*", ".travis.yml", ".github"]
autoexamples = true
edition = "2018"

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

Loading…
Cancel
Save