Release v0.4.0

pull/125/head^2 v0.4.0
Florian Dehau 5 years ago
parent 0168442c22
commit f5d7f70472

@ -1,9 +1,28 @@
# Changelog
## To be released
## To be released
* Added a new shape: Rectangle
* Upgraded to Rust 2018 edition
## v0.4.0 - 2019-02-03
### Added
* Add a new canvas shape: `Rectangle`.
* Official support of `Crossterm` backend.
* Make it possible to choose the divider between `Tabs`.
* Add word wrapping on Paragraph.
* The gauge widget accepts a ratio (f64 between 0 and 1) in addition of a
percentage.
### Changed
* Upgrade to Rust 2018 edition.
### Fixed
* Fix rendering of double-width characters.
* Fix race condition on the size of the terminal and expose a size that is
safe to use when drawing through `Frame::size`.
* Prevent unsigned int overflow on large screens.
## v0.3.0 - 2018-11-04

@ -1,6 +1,6 @@
[package]
name = "tui"
version = "0.3.0"
version = "0.4.0"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards

Loading…
Cancel
Save