mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
Release v0.11.0
This commit is contained in:
parent
11df94d601
commit
57862eeda6
3 changed files with 11 additions and 3 deletions
|
@ -2,8 +2,16 @@
|
|||
|
||||
## To be released
|
||||
|
||||
## v0.11.0 - 2020-09-20
|
||||
|
||||
### Features
|
||||
|
||||
* Add the dot character as a new type of canvas marker (#350).
|
||||
* Support more style modifiers on Windows (#368).
|
||||
|
||||
### Fixes
|
||||
|
||||
* Clearing the terminal through `Terminal::clear` will cause the whole UI to be redrawn (#380).
|
||||
* Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).
|
||||
|
||||
## v0.10.0 - 2020-07-17
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "tui"
|
||||
version = "0.10.0"
|
||||
version = "0.11.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.10"
|
||||
//! tui = "0.11"
|
||||
//! termion = "1.5"
|
||||
//! ```
|
||||
//!
|
||||
|
@ -20,7 +20,7 @@
|
|||
//! ```toml
|
||||
//! [dependencies]
|
||||
//! crossterm = "0.17"
|
||||
//! tui = { version = "0.10", default-features = false, features = ['crossterm'] }
|
||||
//! tui = { version = "0.11", default-features = false, features = ['crossterm'] }
|
||||
//! ```
|
||||
//!
|
||||
//! The same logic applies for all other available backends.
|
||||
|
|
Loading…
Reference in a new issue