Skip to content

Commit 857e233

Browse files
committed
chore: release v0.9.0
1 parent 4e17ca7 commit 857e233

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased] <!-- ReleaseDate -->
66

7+
- No changes since the latest release below.
8+
9+
## [0.9.0] - 2025-09-16
10+
711
### Features
812

913
Adds `Selectable` derive macro for enums! You can now easily create enum-based prompts (e.g. menus) by using the `Selectable` derive macro on your enums.
@@ -372,7 +376,8 @@ The library is already featureful enough to warrant a higher version number, bum
372376

373377
<!-- next-url -->
374378

375-
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.8.0...HEAD
379+
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.9.0...HEAD
380+
[0.9.0]: https://github.com/mikaelmello/inquire/compare/v0.8.0...v0.9.0
376381
[0.8.0]: https://github.com/mikaelmello/inquire/compare/v0.7.5...v0.8.0
377382
[0.7.5]: https://github.com/mikaelmello/inquire/compare/v0.7.4...v0.7.5
378383
[0.7.4]: https://github.com/mikaelmello/inquire/compare/v0.7.3...v0.7.4

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ cargo run --example expense_tracker -p inquire-examples
6868
Put this line in your `Cargo.toml`, under `[dependencies]`.
6969

7070
```
71-
inquire = "0.8.0"
71+
inquire = "0.9.0"
7272
```
7373

7474
\* This prompt type is gated under a feature flag, e.g.:
7575

7676
```
77-
inquire = { version = "0.8.0", features = ["date"] }
77+
inquire = { version = "0.9.0", features = ["date"] }
7878
```
7979

8080
# Cross-cutting concerns
@@ -125,13 +125,13 @@ Binary Rust applications that intend to manipulate terminals will probably pick
125125
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:
126126

127127
```toml
128-
inquire = { version = "0.8.0", default-features = false, features = ["termion", "date"] }
128+
inquire = { version = "0.9.0", default-features = false, features = ["termion", "date"] }
129129
```
130130

131131
or this:
132132

133133
```toml
134-
inquire = { version = "0.8.0", default-features = false, features = ["console", "date"] }
134+
inquire = { version = "0.9.0", default-features = false, features = ["console", "date"] }
135135
```
136136

137137
## Formatting

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inquire-examples"
3-
version = "0.1.0"
3+
version = "0.9.0"
44
edition = "2021"
55
publish = false
66

inquire-derive/CRATE_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Derive macros for the [inquire](https://crates.io/crates/inquire) crate.
1717
Put these lines in your `Cargo.toml`, under `[dependencies]`.
1818

1919
```toml
20-
inquire = "0.8.0"
21-
inquire-derive = "0.8.0"
20+
inquire = "0.9.0"
21+
inquire-derive = "0.9.0"
2222
```
2323

2424
Then use the `Selectable` derive macro on your enums:

inquire-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inquire-derive"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "" # TODO
55
publish = false # TODO
66
repository = "https://github.com/mikaelmello/inquire"

inquire/CRATE_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ It provides several different prompts in order to interactively ask the user for
5151
Put this line in your `Cargo.toml`, under `[dependencies]`.
5252

5353
```
54-
inquire = "0.8.0"
54+
inquire = "0.9.0"
5555
```
5656

5757
\* This prompt type is gated under a feature flag, e.g.:
5858

5959
```
60-
inquire = { version = "0.8.0", features = ["date", "editor"] }
60+
inquire = { version = "0.9.0", features = ["date", "editor"] }
6161
```
6262

6363
[`text`]: https://docs.rs/inquire/*/inquire/prompts/text/struct.Text.html

inquire/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inquire"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "inquire is a library for building interactive prompts on terminals"
55
repository = "https://github.com/mikaelmello/inquire"
66
license = "MIT"

0 commit comments

Comments
 (0)