Move simplejit after the umbrella crate in publish-all.sh.

Simplejit's example program uses the umbrella, so publish it after the
umbrella crate to preserve the topological ordering.
This commit is contained in:
Dan Gohman
2018-09-05 13:49:10 -07:00
parent e8878ba504
commit 1e0c9b546b

View File

@@ -37,8 +37,8 @@ echo git commit -a -m "\"Bump version to $version"\"
echo git push
for crate in \
entity bforest codegen/meta codegen frontend native \
reader wasm module simplejit \
faerie umbrella
reader wasm module \
faerie umbrella simplejit
do
echo cargo publish --manifest-path "lib/$crate/Cargo.toml"
done