diff --git a/CHANGELOG.md b/CHANGELOG.md index 54d01e4..2b41e2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/joshka/tui-prompts/compare/v0.2.0...v0.2.1) - 2023-07-18 + +### Other +- add TODO list and key bindings to readme +- add invisible text prompt to readme +- add coverage job to bacon config + ## [0.2.0](https://github.com/joshka/tui-prompts/compare/v0.1.1...v0.2.0) - 2023-07-17 ### Added diff --git a/Cargo.lock b/Cargo.lock index 27fa126..316ac28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "tui-prompts" -version = "0.2.0" +version = "0.2.1" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 06199c0..233fce1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-prompts" -version = "0.2.0" +version = "0.2.1" description = "A library for building interactive prompts for ratatui." repository = "https://github.com/joshka/tui-prompts" authors = ["Joshka"]