Skip to content

Commit

Permalink
fix: Require release versions of clap
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 18, 2022
1 parent b9dfbbf commit 3e23cd1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion clap_bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions clap_complete/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions clap_complete_fig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions clap_mangen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit 3e23cd1

Please sign in to comment.