Skip to content

Commit

Permalink
chore: release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelmello committed Feb 24, 2024
1 parent 9e765e6 commit bd8704e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

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

- No changes since the latest release below.

## [0.7.0] - 2024-02-24

### Breaking Changes

- The Select and Multiselect Filter now scores input and is now expected to return an `Option<i64>`, making it possible to order/rank the list of options. [#176](https://github.com/mikaelmello/inquire/pull/176)
Expand Down Expand Up @@ -298,7 +302,8 @@ The library is already featureful enough to warrant a higher version number, bum

<!-- next-url -->

[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.6.2...HEAD
[unreleased]: https://github.com/mikaelmello/inquire/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/mikaelmello/inquire/compare/v0.6.2...v0.7.0
[0.6.2]: https://github.com/mikaelmello/inquire/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/mikaelmello/inquire/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/mikaelmello/inquire/compare/v0.5.3...v0.6.0
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ cargo run --example expense_tracker --features date
Put this line in your `Cargo.toml`, under `[dependencies]`.

```
inquire = "0.6.2"
inquire = "0.7.0"
```

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

```
inquire = { version = "0.6.2", features = ["date"] }
inquire = { version = "0.7.0", features = ["date"] }
```

# Cross-cutting concerns
Expand Down Expand Up @@ -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.6.2", default-features = false, features = ["termion", "date"] }
inquire = { version = "0.7.0", default-features = false, features = ["termion", "date"] }
```

or this:

```toml
inquire = { version = "0.6.2", default-features = false, features = ["console", "date"] }
inquire = { version = "0.7.0", default-features = false, features = ["console", "date"] }
```

## Formatting
Expand Down
8 changes: 4 additions & 4 deletions inquire-derive/CRATE_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
Put these lines in your `Cargo.toml`, under `[dependencies]`.

```
inquire = "0.6.2"
inquire-derive = "0.6.2"
inquire = "0.7.0"
inquire-derive = "0.7.0"
```

```
inquire = { version = "0.6.2", features = ["date", "editor"] }
inquire-derive = { version = "0.6.2" }
inquire = { version = "0.7.0", features = ["date", "editor"] }
inquire-derive = { version = "0.7.0" }
```
4 changes: 2 additions & 2 deletions inquire-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inquire-derive"
version = "0.6.2"
version = "0.7.0"
description = "" # TODO
publish = false # TODO
repository = "https://github.com/mikaelmello/inquire"
Expand All @@ -21,4 +21,4 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]

[dev-dependencies]
inquire = { path = "../inquire" }
inquire = { path = "../inquire" }
4 changes: 2 additions & 2 deletions inquire/CRATE_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2"
inquire = "0.7.0"
```

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

```
inquire = { version = "0.6.2", features = ["date", "editor"] }
inquire = { version = "0.7.0", features = ["date", "editor"] }
```

[`text`]: https://docs.rs/inquire/*/inquire/prompts/text/struct.Text.html
Expand Down
2 changes: 1 addition & 1 deletion inquire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inquire"
version = "0.6.2"
version = "0.7.0"
description = "inquire is a library for building interactive prompts on terminals"
repository = "https://github.com/mikaelmello/inquire"
license = "MIT"
Expand Down

0 comments on commit bd8704e

Please sign in to comment.