diff --git a/CHANGELOG.md b/CHANGELOG.md index c0af8ba..de39d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.1.5] - 2023-12-18 + +Compatible with `ratatui`: `v0.25.0`. + +### Miscellaneous Tasks + +- *(deps)* Bump ratatui from `0.24.0` to `0.25.0` [**breaking**] +- *(doc)* Fix note style +- *(doc)* Fix typo + +### Bench + +- Init divan + +### Examples + +- Improve cross platform support + ## [0.1.5] - 2023-10-25 Compatible with `ratatui`: `v0.24.0`. diff --git a/Cargo.lock b/Cargo.lock index defcffa..8e0c93c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "tui-term" -version = "0.1.5" +version = "0.1.6" dependencies = [ "bytes", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 6c900d1..6f6f0bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tui-term" description = "A pseudoterminal widget for ratatui" -version = "0.1.5" +version = "0.1.6" authors = ["Alexander Kenji Berthold "] edition = "2021" include = [ diff --git a/README.md b/README.md index 508c99b..38dea80 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: ``` [dependencies] -tui-term = "0.1.0" +tui-term = "0.1.6" ``` or use `cargo add`: ```