Skip to content

Commit 61d72bf

Browse files
committed
chore: release v0.9.1
1 parent d0921a1 commit 61d72bf

File tree

7 files changed

+20
-15
lines changed

7 files changed

+20
-15
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.1] - 2025-09-16
10+
711
### Fixes
812

913
- Fix panicking when terminal backend reports size with 0 width.
@@ -378,7 +382,8 @@ The library is already featureful enough to warrant a higher version number, bum
378382

379383
<!-- next-url -->
380384

381-
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.9.0...HEAD
385+
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.9.1...HEAD
386+
[0.9.1]: https://github.com/mikaelmello/inquire/compare/v0.9.0...v0.9.1
382387
[0.9.0]: https://github.com/mikaelmello/inquire/compare/v0.8.0...v0.9.0
383388
[0.8.0]: https://github.com/mikaelmello/inquire/compare/v0.7.5...v0.8.0
384389
[0.7.5]: https://github.com/mikaelmello/inquire/compare/v0.7.4...v0.7.5

README.md

Lines changed: 6 additions & 6 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
```toml
71-
inquire = "0.9.0"
71+
inquire = "0.9.1"
7272
```
7373

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

7676
```toml
77-
inquire = { version = "0.9.0", features = ["date"] }
77+
inquire = { version = "0.9.1", 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.9.0", default-features = false, features = ["termion", "date"] }
128+
inquire = { version = "0.9.1", default-features = false, features = ["termion", "date"] }
129129
```
130130

131131
or this:
132132

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

137137
## Formatting
@@ -322,7 +322,7 @@ For enum types, you can use the `Selectable` derive macro from the `inquire-deri
322322
Add this to your `Cargo.toml`:
323323

324324
```toml
325-
inquire = "0.9.0"
325+
inquire = "0.9.1"
326326
inquire-derive = "0.9.0"
327327
```
328328

@@ -380,7 +380,7 @@ For enum types, you can use the `Selectable` derive macro from the `inquire-deri
380380
Add this to your `Cargo.toml`:
381381

382382
```toml
383-
inquire = "0.9.0"
383+
inquire = "0.9.1"
384384
inquire-derive = "0.9.0"
385385
```
386386

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.9.0"
3+
version = "0.9.1"
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.9.0"
21-
inquire-derive = "0.9.0"
20+
inquire = "0.9.1"
21+
inquire-derive = "0.9.1"
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.9.0"
3+
version = "0.9.1"
44
description = "Derive macros for the inquire crate"
55
repository = "https://github.com/mikaelmello/inquire"
66
license = "MIT"

inquire/CRATE_README.md

Lines changed: 3 additions & 3 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
```toml
54-
inquire = "0.9.0"
54+
inquire = "0.9.1"
5555
```
5656

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

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

6363
### Derive Macros
@@ -67,7 +67,7 @@ For enum types, you can use the `Selectable` derive macro from the `inquire-deri
6767
Add this to your `Cargo.toml`:
6868

6969
```toml
70-
inquire = "0.9.0"
70+
inquire = "0.9.1"
7171
inquire-derive = "0.9.0"
7272
```
7373

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.9.0"
3+
version = "0.9.1"
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)