diff --git a/Cargo.toml b/Cargo.toml index 81dfd94..fd9c28a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fncmd" -version = "1.0.1" +version = "1.0.2" 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"] [dependencies] clap = "=3.0.0-beta.5" -fncmd-impl = { path = "impl", version = "1.0.1" } +fncmd-impl = { path = "impl", version = "1.0.2" } [workspace] members = ["impl"] diff --git a/README.md b/README.md index d8596c1..ae410c6 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Or you can manually edit `Cargo.toml`: ```toml [dependencies] -fncmd = "1.0.1" +fncmd = "1.0.2" ``` ## Basics diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 3fc99d7..0bbfa58 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fncmd-impl" -version = "1.0.1" +version = "1.0.2" license = "MPL-2.0" authors = ["Yu Shimura "] description = "This crate shouldn't be used directly. Check fncmd."