diff --git a/CHANGELOG.md b/CHANGELOG.md index ac3119d9..e859f067 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +- No changes since the latest release below. + +## [0.6.2] - 2023-05-07 + - Allow usage of ANSI escape codes in prompts. [#136](https://github.com/mikaelmello/inquire/pull/136). Thanks to [@JimLynchCodes](https://github.com/JimLynchCodes) for reporting on [#135](https://github.com/mikaelmello/inquire/issues/135). ## [0.6.1] - 2023-04-08 @@ -255,7 +259,8 @@ The library is already featureful enough to warrant a higher version number, bum -[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.6.1...HEAD +[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.6.2...HEAD +[0.6.2]: https://github.com/mikaelmello/inquire/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/mikaelmello/inquire/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/mikaelmello/inquire/compare/v0.5.3...v0.6.0 [0.5.3]: https://github.com/mikaelmello/inquire/compare/v0.5.2...v0.5.3 diff --git a/CRATE_README.md b/CRATE_README.md index 9baa4468..f20f256a 100644 --- a/CRATE_README.md +++ b/CRATE_README.md @@ -52,13 +52,13 @@ It provides several different prompts in order to interactively ask the user for Put this line in your `Cargo.toml`, under `[dependencies]`. ``` -inquire = "0.6.1" +inquire = "0.6.2" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.6.1", features = ["date", "editor"] } +inquire = { version = "0.6.2", features = ["date", "editor"] } ``` [`text`]: https://docs.rs/inquire/*/inquire/prompts/text/struct.Text.html diff --git a/Cargo.toml b/Cargo.toml index f98eee7e..780d3e24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inquire" -version = "0.6.1" +version = "0.6.2" description = "inquire is a library for building interactive prompts on terminals" repository = "https://github.com/mikaelmello/inquire" license = "MIT" diff --git a/README.md b/README.md index 67852f25..2998c01e 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,13 @@ $ cargo run --example expense_tracker --features date Put this line in your `Cargo.toml`, under `[dependencies]`. ``` -inquire = "0.6.1" +inquire = "0.6.2" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.6.1", features = ["date"] } +inquire = { version = "0.6.2", features = ["date"] } ``` # Cross-cutting concerns @@ -122,13 +122,13 @@ Binary Rust applications that intend to manipulate terminals will probably pick However, if your application already uses a dependency other than crossterm, such as console or termion, you can enable another terminal via feature flags. It is also important to disable inquire's default features as it comes with `crossterm` enabled by default. Such as this: ```toml -inquire = { version = "0.6.1", default-features = false, features = ["termion", "date"] } +inquire = { version = "0.6.2", default-features = false, features = ["termion", "date"] } ``` or this: ```toml -inquire = { version = "0.6.1", default-features = false, features = ["console", "date"] } +inquire = { version = "0.6.2", default-features = false, features = ["console", "date"] } ``` ## Formatting