From 0e39b4591072bf3e2d25d3070699b94b3d5c793a Mon Sep 17 00:00:00 2001 From: Mikael Mello Date: Mon, 22 Apr 2024 20:53:24 -0700 Subject: [PATCH] chore: release v0.7.5 --- CHANGELOG.md | 7 ++++++- README.md | 8 ++++---- inquire-derive/CRATE_README.md | 8 ++++---- inquire-derive/Cargo.toml | 2 +- inquire/CRATE_README.md | 4 ++-- inquire/Cargo.toml | 2 +- 6 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e96a9993..72ef6f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +- No changes since the latest release below. + +## [0.7.5] - 2024-04-23 + - Fix user-provided ANSI escape codes from being removed when rendering. - Introduced on 0.7.0, this regression was making it impossible to have colorised text inside the prompt. - Now ANSI escape codes are properly emitted when rendering the prompt in the terminal. @@ -324,7 +328,8 @@ The library is already featureful enough to warrant a higher version number, bum -[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.7.4...HEAD +[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.7.5...HEAD +[0.7.5]: https://github.com/mikaelmello/inquire/compare/v0.7.4...v0.7.5 [0.7.4]: https://github.com/mikaelmello/inquire/compare/v0.7.3...v0.7.4 [0.7.3]: https://github.com/mikaelmello/inquire/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/mikaelmello/inquire/compare/v0.7.1...v0.7.2 diff --git a/README.md b/README.md index a20dd869..4a2e9d01 100644 --- a/README.md +++ b/README.md @@ -68,13 +68,13 @@ cargo run --example expense_tracker --features date Put this line in your `Cargo.toml`, under `[dependencies]`. ``` -inquire = "0.7.4" +inquire = "0.7.5" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.7.4", features = ["date"] } +inquire = { version = "0.7.5", features = ["date"] } ``` # Cross-cutting concerns @@ -125,13 +125,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.7.4", default-features = false, features = ["termion", "date"] } +inquire = { version = "0.7.5", default-features = false, features = ["termion", "date"] } ``` or this: ```toml -inquire = { version = "0.7.4", default-features = false, features = ["console", "date"] } +inquire = { version = "0.7.5", default-features = false, features = ["console", "date"] } ``` ## Formatting diff --git a/inquire-derive/CRATE_README.md b/inquire-derive/CRATE_README.md index 13e813fa..df6e894d 100644 --- a/inquire-derive/CRATE_README.md +++ b/inquire-derive/CRATE_README.md @@ -13,11 +13,11 @@ Put these lines in your `Cargo.toml`, under `[dependencies]`. ``` -inquire = "0.7.4" -inquire-derive = "0.7.4" +inquire = "0.7.5" +inquire-derive = "0.7.5" ``` ``` -inquire = { version = "0.7.4", features = ["date", "editor"] } -inquire-derive = { version = "0.7.4" } +inquire = { version = "0.7.5", features = ["date", "editor"] } +inquire-derive = { version = "0.7.5" } ``` diff --git a/inquire-derive/Cargo.toml b/inquire-derive/Cargo.toml index 489c1d6f..9c96b87b 100644 --- a/inquire-derive/Cargo.toml +++ b/inquire-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inquire-derive" -version = "0.7.4" +version = "0.7.5" description = "" # TODO publish = false # TODO repository = "https://github.com/mikaelmello/inquire" diff --git a/inquire/CRATE_README.md b/inquire/CRATE_README.md index 67f74bc8..37eb73b5 100644 --- a/inquire/CRATE_README.md +++ b/inquire/CRATE_README.md @@ -51,13 +51,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.7.4" +inquire = "0.7.5" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.7.4", features = ["date", "editor"] } +inquire = { version = "0.7.5", features = ["date", "editor"] } ``` [`text`]: https://docs.rs/inquire/*/inquire/prompts/text/struct.Text.html diff --git a/inquire/Cargo.toml b/inquire/Cargo.toml index d4a5b33a..0c38162d 100644 --- a/inquire/Cargo.toml +++ b/inquire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inquire" -version = "0.7.4" +version = "0.7.5" description = "inquire is a library for building interactive prompts on terminals" repository = "https://github.com/mikaelmello/inquire" license = "MIT"