From 964b0841a93f0f4fa3d9c5fe4eec377f62c1ab7d Mon Sep 17 00:00:00 2001 From: a-kenji Date: Sat, 4 May 2024 12:47:34 +0200 Subject: [PATCH] chore: release `v0.1.11` --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc3e7a3..0c69c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project will be documented in this file. +## [0.1.11] - 2024-05-04 + +Compatible with `ratatui`: `v0.26.2`. + +While not a breaking change, consumers that implement the `Screen` +trait may want to look into how the underlying implementation changed in #182. + +### Bug Fixes + +- Render cells correctly that have no content but styles + +### Continuous Integration + +- *(fix)* Correct the buildbot base branch + +### Examples + +- Show cursor on focused pane in the `smux` example +- `smux` handle control characters + ## [0.1.10] - 2024-04-16 Compatible with `ratatui`: `v0.26.2`. diff --git a/Cargo.lock b/Cargo.lock index c06ceab..a6648db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1243,7 +1243,7 @@ dependencies = [ [[package]] name = "tui-term" -version = "0.1.10" +version = "0.1.11" dependencies = [ "bytes", "criterion", diff --git a/Cargo.toml b/Cargo.toml index eb391ca..26ae742 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tui-term" description = "A pseudoterminal widget for ratatui" -version = "0.1.10" +version = "0.1.11" authors = ["Alexander Kenji Berthold "] edition = "2021" include = [ diff --git a/README.md b/README.md index e9a6e9a..3f2070d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To use `tui-term`, simply add it as a dependency in your `Cargo.toml` file: ```sh [dependencies] -tui-term = "0.1.10" +tui-term = "0.1.11" ``` or use `cargo add`: ```sh diff --git a/src/lib.rs b/src/lib.rs index 400368b..f228619 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dependencies] -//! tui-term = "0.1.10" +//! tui-term = "0.1.11" //! ``` //! //! or use `cargo add`: