Skip to content

Commit 84e65d2

Browse files
committed
chore: bump up version of promkit to v0.7.0 instead of v0.6.3 coz Prompt is changed to add writer
1 parent efe3ea8 commit 84e65d2

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Put the package in your `Cargo.toml`.
1111

1212
```toml
1313
[dependencies]
14-
promkit = "0.6.3"
14+
promkit = "0.7.0"
1515
```
1616

1717
## Features

promkit-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ proc-macro = true
1515
syn = { version = "2.0.52", features = ["full"] }
1616
quote = "1.0"
1717
proc-macro2 = "1.0"
18-
promkit = { path = "../promkit", version = "0.6.3" }
18+
promkit = { path = "../promkit", version = "0.7.0" }

promkit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "promkit"
3-
version = "0.6.3"
3+
version = "0.7.0"
44
authors = ["ynqa <[email protected]>"]
55
edition = "2021"
66
description = "A toolkit for building your own interactive command-line tools"

promkit/src/lib.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@
1111
//!
1212
//! ```toml
1313
//! [dependencies]
14-
//! promkit = "0.6.3"
14+
//! promkit = "0.7.0"
1515
//! ```
1616
//!
1717
//! ## Features
1818
//!
1919
//! - Support cross-platform both UNIX and Windows owing to [crossterm](https://github.com/crossterm-rs/crossterm)
2020
//! - Various building methods
2121
//! - Preset; Support for quickly setting up a UI by providing simple parameters.
22-
//! - [Readline](https://github.com/ynqa/promkit/tree/v0.6.3#readline)
23-
//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.6.3#confirm)
24-
//! - [Password](https://github.com/ynqa/promkit/tree/v0.6.3#password)
25-
//! - [Select](https://github.com/ynqa/promkit/tree/v0.6.3#select)
26-
//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.6.3#queryselect)
27-
//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.6.3#checkbox)
28-
//! - [Tree](https://github.com/ynqa/promkit/tree/v0.6.3#tree)
22+
//! - [Readline](https://github.com/ynqa/promkit/tree/v0.7.0#readline)
23+
//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.7.0#confirm)
24+
//! - [Password](https://github.com/ynqa/promkit/tree/v0.7.0#password)
25+
//! - [Select](https://github.com/ynqa/promkit/tree/v0.7.0#select)
26+
//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.7.0#queryselect)
27+
//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.7.0#checkbox)
28+
//! - [Tree](https://github.com/ynqa/promkit/tree/v0.7.0#tree)
2929
//! - Combining various UI components.
3030
//! - They are provided with the same interface, allowing users to choose and
3131
//! assemble them according to their preferences.
@@ -39,7 +39,7 @@
3939
//!
4040
//! ## Examples/Demos
4141
//!
42-
//! See [here](https://github.com/ynqa/promkit/tree/v0.6.3#examplesdemos)
42+
//! See [here](https://github.com/ynqa/promkit/tree/v0.7.0#examplesdemos)
4343
//!
4444
//! ## Why *promkit*?
4545
//!

0 commit comments

Comments
 (0)