Skip to content

Commit 7124ee7

Browse files
committed
chore: release v0.4.0
1 parent f45a1e5 commit 7124ee7

4 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Changelog
22

33
<!-- next-header -->
4-
54
## [Unreleased] - ReleaseDate
65

6+
7+
## [0.4.0] - 2022-09-27
8+
79
### Breaking Changes
810

911
**Multiple changes to the `CustomType` prompt:**
@@ -211,8 +213,9 @@ The library is already featureful enough to warrant a higher version number, bum
211213
- Add DateSelect prompt
212214

213215
<!-- next-url -->
216+
[Unreleased]: https://github.com/mikaelmello/inquire/compare/v0.4.0...HEAD
214217

215-
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.3.0...HEAD
218+
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.3.0...v0.4.0
216219
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.2.1...v0.3.0
217220
[0.2.1]: https://github.com/mikaelmello/inquire/compare/v0.2.0...v0.2.1
218221
[0.2.0]: https://github.com/mikaelmello/inquire/compare/v0.1.0...v0.2.0

CRATE_README.md

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

5454
```
55-
inquire = "0.3.0"
55+
inquire = "0.4.0"
5656
```
5757

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

6060
```
61-
inquire = { version = "0.3.0", features = ["date", "editor"] }
61+
inquire = { version = "0.4.0", features = ["date", "editor"] }
6262
```
6363

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

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.3.0"
3+
version = "0.4.0"
44
description = "inquire is a library for building interactive prompts on terminals"
55
repository = "https://github.com/mikaelmello/inquire"
66
license = "MIT"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ $ cargo run --example expense_tracker --features date
6464
Put this line in your `Cargo.toml`, under `[dependencies]`.
6565

6666
```
67-
inquire = "0.3.0"
67+
inquire = "0.4.0"
6868
```
6969

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

7272
```
73-
inquire = { version = "0.3.0", features = ["date"] }
73+
inquire = { version = "0.4.0", features = ["date"] }
7474
```
7575

7676
# Cross-cutting concerns
@@ -121,13 +121,13 @@ Binary Rust applications that intend to manipulate terminals will probably pick
121121
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:
122122

123123
```toml
124-
inquire = { version = "0.3.0", default-features = false, features = ["termion", "date"] }
124+
inquire = { version = "0.4.0", default-features = false, features = ["termion", "date"] }
125125
```
126126

127127
or this:
128128

129129
```toml
130-
inquire = { version = "0.3.0", default-features = false, features = ["console", "date"] }
130+
inquire = { version = "0.4.0", default-features = false, features = ["console", "date"] }
131131
```
132132

133133
## Formatting

0 commit comments

Comments
 (0)