diff --git a/crates/cdk-integration-tests/Cargo.toml b/crates/cdk-integration-tests/Cargo.toml index ed265eeb..aa5a53ad 100644 --- a/crates/cdk-integration-tests/Cargo.toml +++ b/crates/cdk-integration-tests/Cargo.toml @@ -18,7 +18,7 @@ axum = "0.6.20" rand = "0.8.5" bip39 = { version = "2.0", features = ["rand"] } anyhow = "1" -cdk = { path = "../cdk", version = "0.3.0", features = ["mint", "wallet"] } +cdk = { path = "../cdk", version = "0.4.0", features = ["mint", "wallet"] } cdk-axum = { path = "../cdk-axum"} cdk-fake-wallet = { path = "../cdk-fake-wallet" } tower-http = { version = "0.4.4", features = ["cors"] } diff --git a/misc/justfile.custom.just b/misc/justfile.custom.just index 8fde551f..2781c074 100644 --- a/misc/justfile.custom.just +++ b/misc/justfile.custom.just @@ -56,12 +56,11 @@ clippy-each: echo done -release m: +release m="": #!/usr/bin/env bash set -euo pipefail args=( - "-p cdk" "-p cdk-redb" "-p cdk-sqlite" "-p cdk-axum" @@ -79,7 +78,7 @@ release m: for arg in "${args[@]}"; do echo "Publishing '$arg'" - cargo publish $arg + cargo publish $arg {{m}} echo done