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

Commit

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

## To be released

## v0.13.0 - 2020-11-14

### Features

* Add `LineGauge` widget which is a more compact variant of the existing `Gauge`.
* Bump `crossterm` to 0.18

### Fixes

* Take into account the borders of the `Table` widget when the widths of columns is controlled by
`Percentage` and `Ratio` constraints.

## v0.12.0 - 2020-09-27

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tui"
version = "0.12.0"
version = "0.13.0"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards
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.12"
//! tui = "0.13"
//! termion = "1.5"
//! ```
//!
Expand All @@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! crossterm = "0.18"
//! tui = { version = "0.12", default-features = false, features = ['crossterm'] }
//! tui = { version = "0.13", default-features = false, features = ['crossterm'] }
//! ```
//!
//! The same logic applies for all other available backends.
Expand Down

0 comments on commit 8543523

Please sign in to comment.