diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f805fb..81f3a39 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.3.13](https://github.com/joshka/tui-prompts/compare/v0.3.12...v0.3.13) - 2024-06-25 + +### Other +- *(deps)* update ratatui, itertools, rstest, clap ([#51](https://github.com/joshka/tui-prompts/pull/51)) +- simplify text_prompt tests ([#49](https://github.com/joshka/tui-prompts/pull/49)) + ## [0.3.12](https://github.com/joshka/tui-prompts/compare/v0.3.11...v0.3.12) - 2024-05-11 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 566ce2f..5850bc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -930,7 +930,7 @@ dependencies = [ [[package]] name = "tui-prompts" -version = "0.3.12" +version = "0.3.13" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 9510abb..c843c91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-prompts" -version = "0.3.12" +version = "0.3.13" description = "A library for building interactive prompts for ratatui." repository = "https://github.com/joshka/tui-prompts" authors = ["Joshka"]