Skip to content

Commit a466802

Browse files
committed
chore: Bump wasm-bindgen to 0.2.97
1 parent ae6943f commit a466802

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/release_nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ jobs:
347347
# Be sure to update in test_web.yml, Cargo.toml, web/docker/Dockerfile,
348348
# and web/README.md as well.
349349
- name: Install wasm-bindgen
350-
run: cargo install wasm-bindgen-cli --version 0.2.95
350+
run: cargo install wasm-bindgen-cli --version 0.2.97
351351

352352
# Keep the version number in sync in all workflows,
353353
# and in the extension builder Dockerfile!

.github/workflows/test_extension_dockerfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
registry-url: https://registry.npmjs.org
3030

3131
- name: Install wasm-bindgen
32-
run: cargo install wasm-bindgen-cli --version 0.2.95
32+
run: cargo install wasm-bindgen-cli --version 0.2.97
3333

3434
# Keep the version number in sync in all workflows,
3535
# and in the extension builder Dockerfile!

.github/workflows/test_web.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# Be sure to update in release_nightly.yml, Cargo.toml, web/docker/Dockerfile,
6464
# and web/README.md as well.
6565
- name: Install wasm-bindgen
66-
run: cargo install wasm-bindgen-cli --version 0.2.95
66+
run: cargo install wasm-bindgen-cli --version 0.2.97
6767

6868
# Keep the version number in sync in all workflows,
6969
# and in the extension builder Dockerfile!
@@ -128,7 +128,7 @@ jobs:
128128
# Be sure to update in release_nightly.yml, Cargo.toml, web/docker/Dockerfile,
129129
# and web/README.md as well.
130130
- name: Install wasm-bindgen
131-
run: cargo install wasm-bindgen-cli --version 0.2.95
131+
run: cargo install wasm-bindgen-cli --version 0.2.97
132132

133133
# No real need to install wasm-opt here
134134

Cargo.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ serde = "1.0.215"
7272
thiserror = "1.0"
7373
url = "2.5.2"
7474
# Make sure to match wasm-bindgen-cli version to this everywhere.
75-
wasm-bindgen = "=0.2.95"
75+
wasm-bindgen = "=0.2.97"
7676
walkdir = "2.5.0"
7777
tokio = "1.41.1"
7878
rfd = "0.15.0"

web/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Note that npm 7 or newer is required. It should come bundled with Node.js 15 or
6565

6666
<!-- Be sure to also update the wasm-bindgen-cli version in `.github/workflows/*.yml` and `web/Cargo.toml`. -->
6767

68-
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.95`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
68+
This can be installed with `cargo install wasm-bindgen-cli --version 0.2.97`. Be sure to install this specific version of `wasm-bindgen-cli` to match the version used by Ruffle.
6969

7070
#### Binaryen
7171

web/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN wget 'https://sh.rustup.rs' --quiet -O- | sh -s -- -y --profile minimal --ta
1515
ENV PATH="/root/.cargo/bin:$PATH"
1616
# wasm-bindgen-cli version must match wasm-bindgen crate version.
1717
# Be sure to update in test_web.yml, release_nightly.yml, Cargo.toml, and web/README.md as well.
18-
RUN cargo install wasm-bindgen-cli --version 0.2.95
18+
RUN cargo install wasm-bindgen-cli --version 0.2.97
1919

2020
# Building Ruffle:
2121
COPY . ruffle

0 commit comments

Comments
 (0)