diff --git a/README.md b/README.md index 684ddbb9..d102ebd5 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Put the package in your `Cargo.toml`. ```toml [dependencies] -promkit = "0.4.4" +promkit = "0.4.5" ``` ## Features diff --git a/promkit/Cargo.toml b/promkit/Cargo.toml index 64df0198..dfdb26ab 100644 --- a/promkit/Cargo.toml +++ b/promkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "promkit" -version = "0.4.4" +version = "0.4.5" authors = ["ynqa "] edition = "2021" description = "A toolkit for building your own interactive command-line tools" diff --git a/promkit/src/lib.rs b/promkit/src/lib.rs index 8911add2..60a5e4ac 100644 --- a/promkit/src/lib.rs +++ b/promkit/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! promkit = "0.4.4" +//! promkit = "0.4.5" //! ``` //! //! ## Features @@ -19,13 +19,13 @@ //! - Support cross-platform both UNIX and Windows owing to [crossterm](https://github.com/crossterm-rs/crossterm) //! - Various building methods //! - Preset; Support for quickly setting up a UI by providing simple parameters. -//! - [Readline](https://github.com/ynqa/promkit/tree/v0.4.4#readline) -//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.4.4#confirm) -//! - [Password](https://github.com/ynqa/promkit/tree/v0.4.4#password) -//! - [Select](https://github.com/ynqa/promkit/tree/v0.4.4#select) -//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.4.4#queryselect) -//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.4.4#checkbox) -//! - [Tree](https://github.com/ynqa/promkit/tree/v0.4.4#tree) +//! - [Readline](https://github.com/ynqa/promkit/tree/v0.4.5#readline) +//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.4.5#confirm) +//! - [Password](https://github.com/ynqa/promkit/tree/v0.4.5#password) +//! - [Select](https://github.com/ynqa/promkit/tree/v0.4.5#select) +//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.4.5#queryselect) +//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.4.5#checkbox) +//! - [Tree](https://github.com/ynqa/promkit/tree/v0.4.5#tree) //! - Combining various UI components. //! - They are provided with the same interface, allowing users to choose and //! assemble them according to their preferences. @@ -39,7 +39,7 @@ //! //! ## Examples/Demos //! -//! See [here](https://github.com/ynqa/promkit/tree/v0.4.4#examplesdemos) +//! See [here](https://github.com/ynqa/promkit/tree/v0.4.5#examplesdemos) //! //! ## Why *promkit*? //!