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

Commit

Permalink
Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdehau committed Jan 1, 2021
1 parent eb1e3be commit f09863f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## To be released

## v0.14.0 - 2021-01-01

### Breaking changes

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

### Fixes

- Fix handling of Non Breaking Space (NBSP) in wrapped text in `Paragraph` widget.

### Features

- Add `Style::reset` to create a `Style` resetting all styling properties when applied.
- Add an option to render the `Gauge` widget with unicode blocks.
- Manage common project tasks with `cargo-make` rather than `make` for easier on-boarding.

## v0.13.0 - 2020-11-14

### Features
Expand Down
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "tui"
version = "0.13.0"
version = "0.14.0"
authors = ["Florian Dehau <[email protected]>"]
description = """
A library to build rich terminal user interfaces or dashboards
"""
documentation = "https://docs.rs/tui/0.10.0/tui/"
documentation = "https://docs.rs/tui/0.14.0/tui/"
keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs"
readme = "README.md"
license = "MIT"
exclude = ["assets/*", ".github"]
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
autoexamples = true
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//!
//! ```toml
//! [dependencies]
//! tui = "0.13"
//! tui = "0.14"
//! termion = "1.5"
//! ```
//!
Expand All @@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! crossterm = "0.18"
//! tui = { version = "0.13", default-features = false, features = ['crossterm'] }
//! tui = { version = "0.14", default-features = false, features = ['crossterm'] }
//! ```
//!
//! The same logic applies for all other available backends.
Expand Down

0 comments on commit f09863f

Please sign in to comment.