diff --git a/CHANGELOG.md b/CHANGELOG.md index 0497183..7463609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index a0bcb61..1409e19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui" -version = "0.7.0" +version = "0.8.0" authors = ["Florian Dehau "] 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" diff --git a/src/lib.rs b/src/lib.rs index f2640cc..6e1ac78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.