diff --git a/CHANGELOG.md b/CHANGELOG.md index 56af865..b4c4a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## To be released +## v0.10.0 - 2020-07-17 + ### Breaking changes #### Easier cursor management diff --git a/Cargo.toml b/Cargo.toml index 6998738..e2f6f0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui" -version = "0.9.5" +version = "0.10.0" authors = ["Florian Dehau "] description = """ A library to build rich terminal user interfaces or dashboards diff --git a/src/lib.rs b/src/lib.rs index e810e20..74e7a2a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! tui = "0.9" +//! tui = "0.10" //! termion = "1.5" //! ``` //! @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! crossterm = "0.17" -//! tui = { version = "0.9", default-features = false, features = ['crossterm'] } +//! tui = { version = "0.10", default-features = false, features = ['crossterm'] } //! ``` //! //! The same logic applies for all other available backends.