Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump walrus to v0.20 #3483

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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