Skip to content

Commit 3bfc987

Browse files
committed
Bump to 0.2.87
1 parent 5f10d6f commit 3bfc987

File tree

51 files changed

+110
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+110
-108
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# `wasm-bindgen` Change Log
22
--------------------------------------------------------------------------------
33

4-
## [Unreleased](https://github.com/rustwasm/wasm-bindgen/compare/0.2.86...main)
4+
## [0.2.87](https://github.com/rustwasm/wasm-bindgen/compare/0.2.86...0.2.87)
5+
6+
Released 2023-06-09.
57

68
### Changed
79

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -42,15 +42,15 @@ xxx_debug_only_print_generated_code = [
4242
]
4343

4444
[dependencies]
45-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.86" }
45+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.87" }
4646
serde = { version = "1.0", optional = true }
4747
serde_json = { version = "1.0", optional = true }
4848
cfg-if = "1.0.0"
4949

5050
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
51-
js-sys = { path = 'crates/js-sys', version = '0.3.63' }
52-
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.36' }
53-
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.36' }
51+
js-sys = { path = 'crates/js-sys', version = '0.3.64' }
52+
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.37' }
53+
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.37' }
5454
serde_derive = "1.0"
5555
wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
5656
wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }

crates/backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-backend"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
@@ -23,4 +23,4 @@ once_cell = "1.12"
2323
proc-macro2 = "1.0"
2424
quote = '1.0'
2525
syn = { version = '2.0', features = ['full'] }
26-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.86" }
26+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.87" }

crates/cli-support/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli-support"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"
@@ -20,10 +20,10 @@ rustc-demangle = "0.1.13"
2020
serde_json = "1.0"
2121
tempfile = "3.0"
2222
walrus = "0.19.0"
23-
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.86' }
24-
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.86' }
25-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.86' }
26-
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.86' }
27-
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.86' }
28-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.86' }
23+
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.87' }
24+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.87' }
25+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.87' }
26+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.87' }
27+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.87' }
28+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.87' }
2929
unicode-ident = "1.0.5"

crates/cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
@@ -27,8 +27,8 @@ serde = { version = "1.0", features = ['derive'] }
2727
serde_derive = "1.0"
2828
serde_json = "1.0"
2929
walrus = { version = "0.19.0", features = ['parallel'] }
30-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.86" }
31-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.86" }
30+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.87" }
31+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.87" }
3232

3333
[dev-dependencies]
3434
assert_cmd = "1.0"

crates/externref-xform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-externref-xform"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform"

crates/futures/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ license = "MIT/Apache-2.0"
77
name = "wasm-bindgen-futures"
88
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures"
99
readme = "./README.md"
10-
version = "0.4.36"
10+
version = "0.4.37"
1111
edition = "2018"
1212
rust-version = "1.56"
1313

1414
[dependencies]
1515
cfg-if = "1.0.0"
16-
js-sys = { path = "../js-sys", version = '0.3.63' }
17-
wasm-bindgen = { path = "../..", version = '0.2.86' }
16+
js-sys = { path = "../js-sys", version = '0.3.64' }
17+
wasm-bindgen = { path = "../..", version = '0.2.87' }
1818
futures-core = { version = '0.3.8', default-features = false, optional = true }
1919

2020
[features]
@@ -29,6 +29,6 @@ features = [
2929
]
3030

3131
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
32-
wasm-bindgen-test = { path = '../test', version = '0.3.36' }
32+
wasm-bindgen-test = { path = '../test', version = '0.3.37' }
3333
futures-channel-preview = { version = "0.3.0-alpha.18" }
3434
futures-lite = { version = "1.11.3", default-features = false }

crates/js-sys/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "js-sys"
3-
version = "0.3.63"
3+
version = "0.3.64"
44
authors = ["The wasm-bindgen Developers"]
55
readme = "./README.md"
66
categories = ["wasm"]
@@ -20,9 +20,9 @@ test = false
2020
doctest = false
2121

2222
[dependencies]
23-
wasm-bindgen = { path = "../..", version = "0.2.86" }
23+
wasm-bindgen = { path = "../..", version = "0.2.87" }
2424

2525
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
26-
wasm-bindgen-test = { path = '../test', version = '=0.3.36' }
27-
wasm-bindgen-futures = { path = '../futures', version = '0.4.36' }
28-
web-sys = { path = "../web-sys", version = "0.3.63", features = ["Headers", "Response", "ResponseInit"] }
26+
wasm-bindgen-test = { path = '../test', version = '=0.3.37' }
27+
wasm-bindgen-futures = { path = '../futures', version = '0.4.37' }
28+
web-sys = { path = "../web-sys", version = "0.3.64", features = ["Headers", "Response", "ResponseInit"] }

crates/macro-support/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro-support"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"
@@ -21,5 +21,5 @@ strict-macro = []
2121
syn = { version = '2.0', features = ['visit', 'full'] }
2222
quote = '1.0'
2323
proc-macro2 = "1.0"
24-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.86" }
25-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.86" }
24+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.87" }
25+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.87" }

crates/macro/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
@@ -21,11 +21,11 @@ xxx_debug_only_print_generated_code = []
2121
strict-macro = ["wasm-bindgen-macro-support/strict-macro"]
2222

2323
[dependencies]
24-
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.86" }
24+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.87" }
2525
quote = "1.0"
2626

2727
[dev-dependencies]
2828
trybuild = "1.0"
29-
wasm-bindgen = { path = "../..", version = "0.2.86" }
30-
wasm-bindgen-futures = { path = "../futures", version = "0.4.36" }
31-
web-sys = { path = "../web-sys", version = "0.3.63", features = ["Worker"] }
29+
wasm-bindgen = { path = "../..", version = "0.2.87" }
30+
wasm-bindgen-futures = { path = "../futures", version = "0.4.37" }
31+
web-sys = { path = "../web-sys", version = "0.3.64", features = ["Worker"] }

crates/multi-value-xform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-multi-value-xform"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/multi-value-xform"

crates/shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-shared"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared"

crates/shared/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mod schema_hash_approval;
66
// This gets changed whenever our schema changes.
77
// At this time versions of wasm-bindgen and wasm-bindgen-cli are required to have the exact same
88
// SCHEMA_VERSION in order to work together.
9-
pub const SCHEMA_VERSION: &str = "0.2.86";
9+
pub const SCHEMA_VERSION: &str = "0.2.87";
1010

1111
#[macro_export]
1212
macro_rules! shared_api {

crates/test-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-test-macro"
3-
version = "0.3.36"
3+
version = "0.3.37"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing macro for wasm-bindgen"
66
license = "MIT/Apache-2.0"

crates/test/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-test"
3-
version = "0.3.36"
3+
version = "0.3.37"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing crate for wasm-bindgen"
66
license = "MIT/Apache-2.0"
@@ -10,11 +10,11 @@ rust-version = "1.56"
1010

1111
[dependencies]
1212
console_error_panic_hook = '0.1'
13-
js-sys = { path = '../js-sys', version = '0.3.63' }
13+
js-sys = { path = '../js-sys', version = '0.3.64' }
1414
scoped-tls = "1.0"
15-
wasm-bindgen = { path = '../..', version = '0.2.86' }
16-
wasm-bindgen-futures = { path = '../futures', version = '0.4.36' }
17-
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.36' }
15+
wasm-bindgen = { path = '../..', version = '0.2.87' }
16+
wasm-bindgen-futures = { path = '../futures', version = '0.4.37' }
17+
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.37' }
1818
gg-alloc = { version = "1.0", optional = true }
1919

2020
[lib]

crates/threads-xform/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-threads-xform"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/threads-xform"
@@ -15,7 +15,7 @@ rust-version = "1.56"
1515
[dependencies]
1616
anyhow = "1.0"
1717
walrus = "0.19.0"
18-
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.86" }
18+
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.87" }
1919

2020
[dev-dependencies]
2121
rayon = "1.0"

crates/wasm-conventions/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-wasm-conventions"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-conventions"

crates/wasm-interpreter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-wasm-interpreter"
3-
version = "0.2.86"
3+
version = "0.2.87"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/main/crates/wasm-interpreter"
@@ -16,7 +16,7 @@ rust-version = "1.56"
1616
anyhow = "1.0"
1717
log = "0.4"
1818
walrus = "0.19.0"
19-
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.86" }
19+
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.87" }
2020

2121
[dev-dependencies]
2222
tempfile = "3"

crates/web-sys/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "web-sys"
3-
version = "0.3.63"
3+
version = "0.3.64"
44
authors = ["The wasm-bindgen Developers"]
55
readme = "./README.md"
66
homepage = "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html"
@@ -22,12 +22,12 @@ doctest = false
2222
test = false
2323

2424
[dependencies]
25-
wasm-bindgen = { path = "../..", version = "0.2.86" }
26-
js-sys = { path = '../js-sys', version = '0.3.63' }
25+
wasm-bindgen = { path = "../..", version = "0.2.87" }
26+
js-sys = { path = '../js-sys', version = '0.3.64' }
2727

2828
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
29-
wasm-bindgen-test = { path = '../test', version = '0.3.36' }
30-
wasm-bindgen-futures = { path = '../futures', version = '0.4.36' }
29+
wasm-bindgen-test = { path = '../test', version = '0.3.37' }
30+
wasm-bindgen-futures = { path = '../futures', version = '0.4.37' }
3131

3232
# This list is auto-generated by the wasm-bindgen-webidl program
3333
[features]

crates/webidl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ log = "0.4.1"
2121
proc-macro2 = "1.0"
2222
quote = '1.0'
2323
syn = { version = '2.0', features = ['full'] }
24-
wasm-bindgen-backend = { version = "=0.2.86", path = "../backend" }
24+
wasm-bindgen-backend = { version = "=0.2.87", path = "../backend" }
2525
weedle = { git = "https://github.com/rustwasm/weedle.git" }
2626
once_cell = "1.12"
2727
sourcefile = "0.1"

examples/add/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
12+
wasm-bindgen = "0.2.87"

examples/canvas/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
js-sys = "0.3.63"
13-
wasm-bindgen = "0.2.86"
12+
js-sys = "0.3.64"
13+
wasm-bindgen = "0.2.87"
1414

1515
[dependencies.web-sys]
1616
version = "0.3.4"

examples/char/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
12+
wasm-bindgen = "0.2.87"

examples/closures/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
13-
js-sys = "0.3.63"
12+
wasm-bindgen = "0.2.87"
13+
js-sys = "0.3.64"
1414

1515
[dependencies.web-sys]
1616
version = "0.3.4"

examples/console_log/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
13-
web-sys = { version = "0.3.63", features = ['console'] }
12+
wasm-bindgen = "0.2.87"
13+
web-sys = { version = "0.3.64", features = ['console'] }

examples/deno/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
12+
wasm-bindgen = "0.2.87"

examples/dom/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
12+
wasm-bindgen = "0.2.87"
1313

1414
[dependencies.web-sys]
1515
version = "0.3.4"

examples/duck-typed-interfaces/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ rust-version = "1.56"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.86"
12+
wasm-bindgen = "0.2.87"

0 commit comments

Comments
 (0)