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

Commit

Permalink
Release v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdehau committed May 2, 2021
1 parent 414386e commit 90a6a8f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 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.15.0 - 2021-05-02

### Features

* Update `crossterm` to `0.19`.
* Update `rand` to `0.8`.
* Add a read-only view of the terminal state after the draw call (#440).

### Fixes

* Remove compile warning in `TestBackend::assert_buffer` (#466).

## v0.14.0 - 2021-01-01

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "tui"
version = "0.14.0"
version = "0.15.0"
authors = ["Florian Dehau <[email protected]>"]
description = """
A library to build rich terminal user interfaces or dashboards
"""
documentation = "https://docs.rs/tui/0.14.0/tui/"
documentation = "https://docs.rs/tui/0.15.0/tui/"
keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs"
readme = "README.md"
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.14"
//! tui = "0.15"
//! termion = "1.5"
//! ```
//!
Expand All @@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! crossterm = "0.19"
//! tui = { version = "0.14", default-features = false, features = ['crossterm'] }
//! tui = { version = "0.15", default-features = false, features = ['crossterm'] }
//! ```
//!
//! The same logic applies for all other available backends.
Expand Down

0 comments on commit 90a6a8f

Please sign in to comment.