mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
Release v0.9.0
This commit is contained in:
parent
bc2a512101
commit
8debb0d338
2 changed files with 5 additions and 3 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
## To be released
|
||||
|
||||
## v0.9.0 - 2020-04-14
|
||||
|
||||
### Features
|
||||
|
||||
* Introduce stateful widgets, i.e widgets that can take advantage of keeping
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "tui"
|
||||
version = "0.8.0"
|
||||
version = "0.9.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", ".github"]
|
||||
exclude = ["assets/*", ".github"]
|
||||
autoexamples = true
|
||||
edition = "2018"
|
||||
|
||||
|
@ -25,7 +25,7 @@ itertools = "0.9"
|
|||
either = "1.5"
|
||||
unicode-segmentation = "1.2"
|
||||
unicode-width = "0.1"
|
||||
termion = { version = "1.5" , optional = true }
|
||||
termion = { version = "1.5", optional = true }
|
||||
rustbox = { version = "0.11", optional = true }
|
||||
crossterm = { version = "0.17", optional = true }
|
||||
easycurses = { version = "0.12.2", optional = true }
|
||||
|
|
Loading…
Reference in a new issue