Skip to content

Commit

Permalink
Merge pull request #1691 from CosmWasm/upgrade-assert_cmd
Browse files Browse the repository at this point in the history
Upgrade assert_cmd to 2.0.10
  • Loading branch information
webmaster128 authored May 23, 2023
2 parents 7c7b774 + bc7c05a commit 40b2904
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ cosmwasm-vm = { path = "../vm", version = "1.2.5" }
cosmwasm-std = { path = "../std", version = "1.2.5" }

[dev-dependencies]
assert_cmd = "2"
assert_cmd = "=2.0.10" # 2.0.11+ requires Rust 1.65.0 which we currently don't want to make the minimum if possible
predicates = "3"
2 changes: 1 addition & 1 deletion packages/check/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn main() {
Arg::new("CAPABILITIES")
// `long` setting required to turn the position argument into an option 🤷
.long("available-capabilities")
.aliases(&["FEATURES", "supported-features"]) // Old names
.aliases(["FEATURES", "supported-features"]) // Old names
.value_name("CAPABILITIES")
.help("Sets the available capabilities that the desired target chain has")
.num_args(1)
Expand Down

0 comments on commit 40b2904

Please sign in to comment.