Skip to content

Commit

Permalink
Bump walrus to v0.20 (#3483)
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Nov 10, 2023
1 parent 54e0aa6 commit 9fb3bca
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
* Add additional constructor to `DataView` for `SharedArrayBuffer`.
[#3695](https://github.com/rustwasm/wasm-bindgen/pull/3695)

### Fixed

* The DWARF section is now correctly modified instead of leaving it in a broken state.
[#3483](https://github.com/rustwasm/wasm-bindgen/pull/3483)

## [0.2.88](https://github.com/rustwasm/wasm-bindgen/compare/0.2.87...0.2.88)

Released 2023-11-01
Expand Down
2 changes: 1 addition & 1 deletion crates/cli-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ log = "0.4"
rustc-demangle = "0.1.13"
serde_json = "1.0"
tempfile = "3.0"
walrus = "0.19.0"
walrus = "0.20.2"
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.88' }
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.88' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.88' }
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ureq = { version = "2.7", default-features = false, features = [
"brotli",
"gzip",
] }
walrus = { version = "0.19.0", features = ['parallel'] }
walrus = { version = "0.20.2", features = ['parallel'] }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.88" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.88" }

Expand Down
2 changes: 1 addition & 1 deletion crates/externref-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.57"

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.20.2"

[dev-dependencies]
rayon = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/multi-value-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.57"

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.20.2"

[dev-dependencies]
rayon = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/threads-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.57"

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.20.2"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.88" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-conventions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ edition = "2018"
rust-version = "1.57"

[dependencies]
walrus = "0.19.0"
walrus = "0.20.2"
anyhow = "1.0"
2 changes: 1 addition & 1 deletion crates/wasm-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.57"
[dependencies]
anyhow = "1.0"
log = "0.4"
walrus = "0.19.0"
walrus = "0.20.2"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.88" }

[dev-dependencies]
Expand Down

0 comments on commit 9fb3bca

Please sign in to comment.