From 65282002286bcdb2a51a6de6a8e270479dd05b0a Mon Sep 17 00:00:00 2001 From: Yu Shimura Date: Wed, 9 Feb 2022 15:53:08 +0900 Subject: [PATCH] chore: bump version to 1.2.4 --- Cargo.toml | 4 ++-- README.md | 2 +- impl/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d70295a..371e8d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fncmd" -version = "1.2.3" +version = "1.2.4" license = "MPL-2.0" authors = ["Yu Shimura "] description = "Command line interface as a function." @@ -13,7 +13,7 @@ exclude = [".*", "rust-toolchain", "rustfmt.toml", "release.toml", "justfile"] [dependencies] clap = { version = "3.0.7", features = ["derive"] } -fncmd-impl = { path = "impl", version = "=1.2.3" } +fncmd-impl = { path = "impl", version = "=1.2.4" } once_cell = "1.9.0" [workspace] diff --git a/README.md b/README.md index 05342e3..adb3eed 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Or you can manually edit `Cargo.toml`: ```toml [dependencies] -fncmd = "1.2.3" +fncmd = "1.2.4" ``` ## Basics diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 3aa9296..f633018 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fncmd-impl" -version = "1.2.3" +version = "1.2.4" license = "MPL-2.0" authors = ["Yu Shimura "] description = "This crate shouldn't be used directly. Check fncmd."