diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b41e2b..4b50b78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/joshka/tui-prompts/compare/v0.2.1...v0.2.2) - 2023-07-18 + +### Other +- add unit tests for soft wrapping single lines +- add release-plz github action + ## [0.2.1](https://github.com/joshka/tui-prompts/compare/v0.2.0...v0.2.1) - 2023-07-18 ### Other diff --git a/Cargo.lock b/Cargo.lock index 316ac28..3ec0ce2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "tui-prompts" -version = "0.2.1" +version = "0.2.2" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 233fce1..70c01f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-prompts" -version = "0.2.1" +version = "0.2.2" description = "A library for building interactive prompts for ratatui." repository = "https://github.com/joshka/tui-prompts" authors = ["Joshka"]