From cf03b71b6a45a12244494899717b08afdfb03591 Mon Sep 17 00:00:00 2001 From: ynqa Date: Sat, 6 Apr 2024 17:41:41 +0900 Subject: [PATCH] bump up version to v0.4.0 --- README.md | 2 +- promkit/Cargo.toml | 2 +- promkit/src/lib.rs | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d50fab57..cab9bfb7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Put the package in your `Cargo.toml`. ```toml [dependencies] -promkit = "0.3.5" +promkit = "0.4.0" ``` ## Features diff --git a/promkit/Cargo.toml b/promkit/Cargo.toml index 158d3a51..280e0218 100644 --- a/promkit/Cargo.toml +++ b/promkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "promkit" -version = "0.3.5" +version = "0.4.0" 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 627b5c70..72defd6e 100644 --- a/promkit/src/lib.rs +++ b/promkit/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! promkit = "0.3.5" +//! promkit = "0.4.0" //! ``` //! //! ## 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.3.5#readline) -//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.3.5#confirm) -//! - [Password](https://github.com/ynqa/promkit/tree/v0.3.5#password) -//! - [Select](https://github.com/ynqa/promkit/tree/v0.3.5#select) -//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.3.5#queryselect) -//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.3.5#checkbox) -//! - [Tree](https://github.com/ynqa/promkit/tree/v0.3.5#tree) +//! - [Readline](https://github.com/ynqa/promkit/tree/v0.4.0#readline) +//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.4.0#confirm) +//! - [Password](https://github.com/ynqa/promkit/tree/v0.4.0#password) +//! - [Select](https://github.com/ynqa/promkit/tree/v0.4.0#select) +//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.4.0#queryselect) +//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.4.0#checkbox) +//! - [Tree](https://github.com/ynqa/promkit/tree/v0.4.0#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.3.5#examplesdemos) +//! See [here](https://github.com/ynqa/promkit/tree/v0.4.0#examplesdemos) //! //! ## Why *promkit*? //!