mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-29 03:39:29 +00:00
35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#! /bin/sh
|
|
|
|
# How to install `fd`: https://github.com/sharkdp/fd#installation
|
|
: "${FD:=fd}"
|
|
|
|
# A script to update the version of all the crates at the same time
|
|
PREVIOUS_VERSION='2.2.0'
|
|
NEXT_VERSION='2.2.1'
|
|
|
|
# quick hack
|
|
${FD} Cargo.toml --exec sed -i '{}' -e "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/"
|
|
${FD} Cargo.toml --exec sed -i '{}' -e "s/version = \"=$PREVIOUS_VERSION\"/version = \"=$NEXT_VERSION\"/"
|
|
echo "manually check changes to Cargo.toml"
|
|
|
|
${FD} wasmer.iss --exec sed -i '{}' -e "s/AppVersion=$PREVIOUS_VERSION/AppVersion=$NEXT_VERSION/"
|
|
echo "manually check changes to wasmer.iss"
|
|
|
|
${FD} publish.py --exec sed -i '{}' -e "s/target_version = \"$PREVIOUS_VERSION\"/target_version = \"$NEXT_VERSION\"/"
|
|
echo "manually check changes to publish.py"
|
|
|
|
# Re-generate lock files
|
|
cargo generate-lockfile
|
|
cargo generate-lockfile --manifest-path wasmer-test/Cargo.toml
|
|
|
|
# Order to upload packages in
|
|
## wasmer-types
|
|
## win-exception-handler
|
|
## compiler
|
|
## compiler-cranelift
|
|
## compiler-llvm
|
|
## compiler-singlepass
|
|
## emscripten
|
|
## wasi
|
|
## wasmer (api)
|