From 07ce51dca3757d84a70969b50fc09dad0cae2ced Mon Sep 17 00:00:00 2001 From: Zeke Foppa <196249+bfops@users.noreply.github.com> Date: Tue, 19 Aug 2025 13:13:38 -0700 Subject: [PATCH] Reduce `tools/publish-crates.sh` to only publish `bindings` and `sdk` (#3180) # Description of Changes Fixes https://github.com/clockworklabs/SpacetimeDB/issues/3017. See that issue for more context. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing We should do a little extra verification on the next release. --------- Co-authored-by: Zeke Foppa --- tools/publish-crates.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/publish-crates.sh b/tools/publish-crates.sh index 46b278ceec..a923e06356 100755 --- a/tools/publish-crates.sh +++ b/tools/publish-crates.sh @@ -39,8 +39,7 @@ if [ $DRY_RUN -ne 1 ]; then fi BASEDIR=$(pwd) -# TODO: Do we really need to publish the `cli` and `standalone` crates? -declare -a ROOTS=(bindings sdk cli standalone) +declare -a ROOTS=(bindings sdk) declare -a CRATES=($(python3 tools/find-publish-list.py --recursive --quiet "${ROOTS[@]}")) echo Crates to publish: "${CRATES[@]}"