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

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdehau committed Sep 27, 2020
1 parent c4cd0a5 commit 51b691e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,22 @@

## To be released

## v0.12.0 - 2020-09-27

### Features

* Make it easier to work with string with multiple lines in `Text` (#361).

### Fixes

* Fix a style leak in `Graph` so components drawn on top of the plotted data (i.e legend and axis
titles) are not affected by the style of the `Dataset`s (#388).
* Make sure `BarChart` shows bars with the max height only when the plotted data is actually equal
to the max (#383).

## v0.11.0 - 2020-09-20

### Features
### Features

* Add the dot character as a new type of canvas marker (#350).
* Support more style modifiers on Windows (#368).
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.11.0"
version = "0.12.0"
authors = ["Florian Dehau <[email protected]>"]
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.11"
//! tui = "0.12"
//! termion = "1.5"
//! ```
//!
Expand All @@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! crossterm = "0.17"
//! tui = { version = "0.11", default-features = false, features = ['crossterm'] }
//! tui = { version = "0.12", default-features = false, features = ['crossterm'] }
//! ```
//!
//! The same logic applies for all other available backends.
Expand Down

0 comments on commit 51b691e

Please sign in to comment.