diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a25b3..56c4a1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,47 @@ All notable changes to this project will be documented in this file. +## [0.1.9] - 2024-03-28 + +Compatible with `ratatui`: `v0.26.1`. + +This release increases `tui-term`'s flexibility. + +The two notable changes are breaking changes: +- Looser coupling with `vt100` https://github.com/a-kenji/tui-term/pull/152 +It is now possible to implement the `Screen` trait for alternative backend parser implementations. + -> PseudoTerminal now contains a generic. + -> Automatic dereferencing no longer works for the constructor e.g. `PseudoTerminal::new(&parser.screen())` will fail. +- `ratatui`'s default features are not activated anymore, allowing for easier composition +with backends other than `crossterm` + +### Features + +- Add `vt100` as optional, but enabled by default + +### Bug Fixes + +- Specify required feature for controller example + +### Documentation + +- Add doc comments to `Screen` and `Cell` trait +- *(readme)* Improve the readme + +### Testing + +- Use fixed crane `nextest` command + +### Miscellaneous Tasks + +- Move `vt100` specific details to own module +- Move `vt100` to `ratatui` cell conversion to helper +- *(toolchain)* Bump default development toolchain + +### Flake.lock + +- Update + ## [0.1.8] - 2024-02-14 Compatible with `ratatui`: `v0.26.1`. diff --git a/Cargo.lock b/Cargo.lock index 4b60a8c..141ee95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1209,7 +1209,7 @@ dependencies = [ [[package]] name = "tui-term" -version = "0.1.8" +version = "0.1.9" dependencies = [ "bytes", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 9a7ba3d..2d60de5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tui-term" description = "A pseudoterminal widget for ratatui" -version = "0.1.8" +version = "0.1.9" authors = ["Alexander Kenji Berthold "] edition = "2021" include = [ diff --git a/README.md b/README.md index 71f5c84..ede19ca 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.7" +tui-term = "0.1.9" ``` or use `cargo add`: ```sh