fix: itest cdk version

This commit is contained in:
thesimplekid
2024-09-08 22:39:12 +01:00
parent 3bf1a3b28f
commit a06b52039c
2 changed files with 3 additions and 4 deletions

View File

@@ -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"] }

View File

@@ -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