From c74a64ad17be1471e95ff3b0b3269718e9cbe8f9 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 16 Apr 2024 14:27:00 +0200 Subject: [PATCH] chore: release `v0.1.10` --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56c4a1e..cc3e7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.1.10] - 2024-04-16 + +Compatible with `ratatui`: `v0.26.2`. + +MSRV is now `rustc --version`: `1.74.0`. + +### Miscellaneous Tasks + +- *(deps)* Bump ratatui from 0.26.1 to 0.26.2 +- Bump MSRV `1.70.0` -> `1.74.0` [**breaking**] + +### Bench + +- Add divan back + ## [0.1.9] - 2024-03-28 Compatible with `ratatui`: `v0.26.1`. diff --git a/Cargo.lock b/Cargo.lock index 4aed56d..c06ceab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1243,7 +1243,7 @@ dependencies = [ [[package]] name = "tui-term" -version = "0.1.9" +version = "0.1.10" dependencies = [ "bytes", "criterion", diff --git a/Cargo.toml b/Cargo.toml index e755d44..eb391ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tui-term" description = "A pseudoterminal widget for ratatui" -version = "0.1.9" +version = "0.1.10" authors = ["Alexander Kenji Berthold "] edition = "2021" include = [ diff --git a/README.md b/README.md index ede19ca..e9a6e9a 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.9" +tui-term = "0.1.10" ``` or use `cargo add`: ```sh diff --git a/src/lib.rs b/src/lib.rs index 33cfd42..400368b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dependencies] -//! tui-term = "0.1.0" +//! tui-term = "0.1.10" //! ``` //! //! or use `cargo add`: