From 7224e6cfea67281050e56e02d1490eda7f9f589e Mon Sep 17 00:00:00 2001 From: ynqa Date: Sat, 6 Apr 2024 18:26:04 +0900 Subject: [PATCH] bump up version to v0.3.4 --- 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 b7ce3979..3712ef1b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Put the package in your `Cargo.toml`. ```toml [dependencies] -promkit = "0.3.3" +promkit = "0.3.4" ``` ## Features diff --git a/promkit/Cargo.toml b/promkit/Cargo.toml index c774edac..46b77b34 100644 --- a/promkit/Cargo.toml +++ b/promkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "promkit" -version = "0.3.3" +version = "0.3.4" 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 8bd99cbf..216befd4 100644 --- a/promkit/src/lib.rs +++ b/promkit/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! promkit = "0.3.3" +//! promkit = "0.3.4" //! ``` //! //! ## 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.3#readline) -//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.3.3#confirm) -//! - [Password](https://github.com/ynqa/promkit/tree/v0.3.3#password) -//! - [Select](https://github.com/ynqa/promkit/tree/v0.3.3#select) -//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.3.3#queryselect) -//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.3.3#checkbox) -//! - [Tree](https://github.com/ynqa/promkit/tree/v0.3.3#tree) +//! - [Readline](https://github.com/ynqa/promkit/tree/v0.3.4#readline) +//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.3.4#confirm) +//! - [Password](https://github.com/ynqa/promkit/tree/v0.3.4#password) +//! - [Select](https://github.com/ynqa/promkit/tree/v0.3.4#select) +//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.3.4#queryselect) +//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.3.4#checkbox) +//! - [Tree](https://github.com/ynqa/promkit/tree/v0.3.4#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.2#examplesdemos) +//! See [here](https://github.com/ynqa/promkit/tree/v0.3.4#examplesdemos) //! //! ## Why *promkit*? //!