diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b68425..2f805fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.12](https://github.com/joshka/tui-prompts/compare/v0.3.11...v0.3.12) - 2024-05-11 + +### Fixed +- *(text_prompt)* use unicode-width instead of char cnt ([#46](https://github.com/joshka/tui-prompts/pull/46)) + +### Other +- *(text_prompt)* avoid unnecessary clones ([#48](https://github.com/joshka/tui-prompts/pull/48)) + ## [0.3.11](https://github.com/joshka/tui-prompts/compare/v0.3.10...v0.3.11) - 2024-04-25 ### Other diff --git a/Cargo.lock b/Cargo.lock index 65cc025..a63dbbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,7 +672,7 @@ dependencies = [ [[package]] name = "tui-prompts" -version = "0.3.11" +version = "0.3.12" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index d46f17b..e9ec08e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-prompts" -version = "0.3.11" +version = "0.3.12" description = "A library for building interactive prompts for ratatui." repository = "https://github.com/joshka/tui-prompts" authors = ["Joshka"]