From 579c01d6f74ca39a41a42501839f76057df0c7c4 Mon Sep 17 00:00:00 2001 From: ynqa Date: Sun, 15 Dec 2024 14:39:49 +0900 Subject: [PATCH] bump up version to v0.6.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 9b03d022..28e289c3 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Put the package in your `Cargo.toml`. ```toml [dependencies] -promkit = "0.5.1" +promkit = "0.6.0" ``` ## Features diff --git a/promkit/Cargo.toml b/promkit/Cargo.toml index 81fb3ae4..b73096a9 100644 --- a/promkit/Cargo.toml +++ b/promkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "promkit" -version = "0.5.1" +version = "0.6.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 72922934..0b46234e 100644 --- a/promkit/src/lib.rs +++ b/promkit/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! promkit = "0.5.1" +//! promkit = "0.6.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.5.1#readline) -//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.5.1#confirm) -//! - [Password](https://github.com/ynqa/promkit/tree/v0.5.1#password) -//! - [Select](https://github.com/ynqa/promkit/tree/v0.5.1#select) -//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.5.1#queryselect) -//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.5.1#checkbox) -//! - [Tree](https://github.com/ynqa/promkit/tree/v0.5.1#tree) +//! - [Readline](https://github.com/ynqa/promkit/tree/v0.6.0#readline) +//! - [Confirm](https://github.com/ynqa/promkit/tree/v0.6.0#confirm) +//! - [Password](https://github.com/ynqa/promkit/tree/v0.6.0#password) +//! - [Select](https://github.com/ynqa/promkit/tree/v0.6.0#select) +//! - [QuerySelect](https://github.com/ynqa/promkit/tree/v0.6.0#queryselect) +//! - [Checkbox](https://github.com/ynqa/promkit/tree/v0.6.0#checkbox) +//! - [Tree](https://github.com/ynqa/promkit/tree/v0.6.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.5.1#examplesdemos) +//! See [here](https://github.com/ynqa/promkit/tree/v0.6.0#examplesdemos) //! //! ## Why *promkit*? //!