From 3e23cd102f5b8b78bee070194cf7835d627260d9 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 18 Oct 2022 14:36:44 -0500 Subject: [PATCH] fix: Require release versions of clap --- clap_bench/Cargo.toml | 2 +- clap_complete/Cargo.toml | 4 ++-- clap_complete_fig/Cargo.toml | 6 +++--- clap_mangen/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clap_bench/Cargo.toml b/clap_bench/Cargo.toml index b9441e37..5efa39c7 100644 --- a/clap_bench/Cargo.toml +++ b/clap_bench/Cargo.toml @@ -11,7 +11,7 @@ publish = false release = false [dev-dependencies] -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "help"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] } criterion = "0.4.0" lazy_static = "1" diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 6b6d1fca..4cdae548 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -40,7 +40,7 @@ pre-release-replacements = [ bench = false [dependencies] -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std"] } clap_lex = { path = "../clap_lex", version = "0.3.0", optional = true } is_executable = { version = "1.0.1", optional = true } os_str_bytes = { version = "6.0", default-features = false, features = ["raw_os_str"], optional = true } @@ -52,7 +52,7 @@ unicode-xid = { version = "0.2.2", optional = true } snapbox = { version = "0.4", features = ["diff"] } # Cutting out `filesystem` feature trycmd = { version = "0.13", default-features = false, features = ["color-auto", "diff", "examples"] } -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "derive", "help"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "derive", "help"] } [[example]] name = "dynamic" diff --git a/clap_complete_fig/Cargo.toml b/clap_complete_fig/Cargo.toml index 0cef5d43..aa765eb4 100644 --- a/clap_complete_fig/Cargo.toml +++ b/clap_complete_fig/Cargo.toml @@ -39,9 +39,9 @@ pre-release-replacements = [ bench = false [dependencies] -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std"] } -clap_complete = { path = "../clap_complete", version = "4.0.0-alpha.0" } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std"] } +clap_complete = { path = "../clap_complete", version = "4.0.0" } [dev-dependencies] snapbox = { version = "0.4", features = ["diff"] } -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "help"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] } diff --git a/clap_mangen/Cargo.toml b/clap_mangen/Cargo.toml index 245f1ae4..2dcce607 100644 --- a/clap_mangen/Cargo.toml +++ b/clap_mangen/Cargo.toml @@ -41,11 +41,11 @@ bench = false [dependencies] roff = "0.2.1" -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "env"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "env"] } [dev-dependencies] snapbox = { version = "0.4", features = ["diff"] } -clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std", "help"] } +clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] } [features] default = []