diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index 1d1e1585b..cf232cd2e 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -289,7 +289,7 @@ jobs: # wasm-bindgen-cli version must match wasm-bindgen crate version. # Be sure to update in test_web.yml, web/Cargo.toml and web/README.md. - name: Install wasm-bindgen - run: cargo install wasm-bindgen-cli --version 0.2.86 + run: cargo install wasm-bindgen-cli --version 0.2.87 - name: Setup conda uses: conda-incubator/setup-miniconda@v2 diff --git a/.github/workflows/test_web.yml b/.github/workflows/test_web.yml index 4b3eb0def..d8dcae6b1 100644 --- a/.github/workflows/test_web.yml +++ b/.github/workflows/test_web.yml @@ -63,7 +63,7 @@ jobs: # wasm-bindgen-cli version must match wasm-bindgen crate version. # Be sure to update in release_nightly.yml, web/Cargo.toml and web/README.md. - name: Install wasm-bindgen - run: cargo install wasm-bindgen-cli --version 0.2.86 + run: cargo install wasm-bindgen-cli --version 0.2.87 - name: Setup conda uses: conda-incubator/setup-miniconda@v2 diff --git a/web/README.md b/web/README.md index eda049840..6449ac319 100644 --- a/web/README.md +++ b/web/README.md @@ -65,7 +65,7 @@ Note that npm 7 or newer is required. It should come bundled with Node.js 15 or -This can be installed with `cargo install wasm-bindgen-cli --version 0.2.86`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle. +This can be installed with `cargo install wasm-bindgen-cli --version 0.2.87`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle. #### Binaryen diff --git a/web/docker/Dockerfile b/web/docker/Dockerfile index f42b6bcbf..b7158b185 100644 --- a/web/docker/Dockerfile +++ b/web/docker/Dockerfile @@ -20,7 +20,7 @@ RUN wget 'https://sh.rustup.rs' --quiet -O- | sh -s -- -y ENV PATH="/root/.cargo/bin:$PATH" RUN rustup update RUN rustup target add wasm32-unknown-unknown -RUN cargo install wasm-bindgen-cli --version 0.2.86 +RUN cargo install wasm-bindgen-cli --version 0.2.87 COPY . ruffle WORKDIR ruffle/web RUN npm install