diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1be196..5854c61e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.0.11] - 2021-09-06 + ### Features - Add [`Editor`](https://docs.rs/inquire/0.0.11/inquire/prompts/editor/struct.Editor.html) prompt. @@ -100,7 +102,8 @@ - Add DateSelect prompt -[Unreleased]: https://github.com/mikaelmello/inquire/compare/v0.0.10...HEAD +[Unreleased]: https://github.com/mikaelmello/inquire/compare/v0.0.11...HEAD +[0.0.11]: https://github.com/mikaelmello/inquire/compare/v0.0.10...v0.0.11 [0.0.10]: https://github.com/mikaelmello/inquire/compare/v0.0.9...v0.0.10 [0.0.9]: https://github.com/mikaelmello/inquire/compare/v0.0.8...v0.0.9 [0.0.8]: https://github.com/mikaelmello/inquire/compare/v0.0.7...v0.0.8 diff --git a/CRATE_README.md b/CRATE_README.md index aeaa8a94..58abe1bd 100644 --- a/CRATE_README.md +++ b/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.0.8" +inquire = "0.0.11" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.0.8", features = ["date", "editor"] } +inquire = { version = "0.0.11", features = ["date", "editor"] } ``` [`Text`]: https://docs.rs/inquire/*/inquire/prompts/text/struct.Text.html diff --git a/Cargo.toml b/Cargo.toml index f686566a..e7a9ab86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inquire" -version = "0.0.11-alpha.0" +version = "0.0.11" 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 9b6aac74..dfc182ff 100644 --- a/README.md +++ b/README.md @@ -63,13 +63,13 @@ $ cargo run --example expense_tracker --features date Put this line in your `Cargo.toml`, under `[dependencies]`. ``` -inquire = "0.0.8" +inquire = "0.0.11" ``` \* This prompt type is gated under a feature flag, e.g.: ``` -inquire = { version = "0.0.8", features = ["date"] } +inquire = { version = "0.0.11", features = ["date"] } ``` # Cross-cutting concerns @@ -116,13 +116,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.0.10", default-features = false, features = ["termion", "date"] } +inquire = { version = "0.0.11", default-features = false, features = ["termion", "date"] } ``` or this: ```toml -inquire = { version = "0.0.10", default-features = false, features = ["console", "date"] } +inquire = { version = "0.0.11", default-features = false, features = ["console", "date"] } ``` ## Formatting