Skip to content
This repository was archived by the owner on Aug 6, 2023. It is now read-only.

Commit f09863f

Browse files
committed
Release v0.14.0
1 parent eb1e3be commit f09863f

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## To be released
44

5+
## v0.14.0 - 2021-01-01
6+
57
### Breaking changes
68

79
#### New API for the Table widget
@@ -61,6 +63,16 @@ You may want to look at the documentation of the different types to get a better
6163
- [`Row`](https://docs.rs/tui/*/tui/widgets/struct.Row.html)
6264
- [`Cell`](https://docs.rs/tui/*/tui/widgets/struct.Cell.html)
6365

66+
### Fixes
67+
68+
- Fix handling of Non Breaking Space (NBSP) in wrapped text in `Paragraph` widget.
69+
70+
### Features
71+
72+
- Add `Style::reset` to create a `Style` resetting all styling properties when applied.
73+
- Add an option to render the `Gauge` widget with unicode blocks.
74+
- Manage common project tasks with `cargo-make` rather than `make` for easier on-boarding.
75+
6476
## v0.13.0 - 2020-11-14
6577

6678
### Features

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[package]
22
name = "tui"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Florian Dehau <work@fdehau.com>"]
55
description = """
66
A library to build rich terminal user interfaces or dashboards
77
"""
8-
documentation = "https://docs.rs/tui/0.10.0/tui/"
8+
documentation = "https://docs.rs/tui/0.14.0/tui/"
99
keywords = ["tui", "terminal", "dashboard"]
1010
repository = "https://github.com/fdehau/tui-rs"
11+
readme = "README.md"
1112
license = "MIT"
12-
exclude = ["assets/*", ".github"]
13+
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
1314
autoexamples = true
1415
edition = "2018"
1516

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! tui = "0.13"
12+
//! tui = "0.14"
1313
//! termion = "1.5"
1414
//! ```
1515
//!
@@ -20,7 +20,7 @@
2020
//! ```toml
2121
//! [dependencies]
2222
//! crossterm = "0.18"
23-
//! tui = { version = "0.13", default-features = false, features = ['crossterm'] }
23+
//! tui = { version = "0.14", default-features = false, features = ['crossterm'] }
2424
//! ```
2525
//!
2626
//! The same logic applies for all other available backends.

0 commit comments

Comments
 (0)