Skip to content

Commit adcf778

Browse files
authored
Bump versions & update changelog for 0.2.90 release (#3763)
1 parent a3332e4 commit adcf778

File tree

50 files changed

+108
-106
lines changed

Some content is hidden

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

50 files changed

+108
-106
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.89...main)
4+
## [0.2.90](https://github.com/rustwasm/wasm-bindgen/compare/0.2.89...0.2.90)
5+
6+
Released 2024-01-06
57

68
### Fixed
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.89" }
45+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.90" }
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.66' }
52-
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.39' }
53-
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.39' }
51+
js-sys = { path = 'crates/js-sys', version = '0.3.67' }
52+
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.40' }
53+
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.40' }
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.89" }
26+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.90" }

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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.20.2"
23-
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.89' }
24-
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.89' }
25-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.89' }
26-
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.89' }
27-
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.89' }
28-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.89' }
23+
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.90' }
24+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.90' }
25+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.90' }
26+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.90' }
27+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.90' }
28+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.90' }
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
@@ -34,8 +34,8 @@ ureq = { version = "2.7", default-features = false, features = [
3434
"gzip",
3535
] }
3636
walrus = { version = "0.20.2", features = ['parallel'] }
37-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.89" }
38-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.89" }
37+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.90" }
38+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.90" }
3939

4040
[dev-dependencies]
4141
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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 OR 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.39"
10+
version = "0.4.40"
1111
edition = "2018"
1212
rust-version = "1.57"
1313

1414
[dependencies]
1515
cfg-if = "1.0.0"
16-
js-sys = { path = "../js-sys", version = '0.3.66' }
17-
wasm-bindgen = { path = "../..", version = '0.2.89' }
16+
js-sys = { path = "../js-sys", version = '0.3.67' }
17+
wasm-bindgen = { path = "../..", version = '0.2.90' }
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.39' }
32+
wasm-bindgen-test = { path = '../test', version = '0.3.40' }
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.66"
3+
version = "0.3.67"
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.89" }
23+
wasm-bindgen = { path = "../..", version = "0.2.90" }
2424

2525
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
26-
wasm-bindgen-test = { path = '../test', version = '=0.3.39' }
27-
wasm-bindgen-futures = { path = '../futures', version = '0.4.39' }
28-
web-sys = { path = "../web-sys", version = "0.3.66", features = ["Headers", "Response", "ResponseInit"] }
26+
wasm-bindgen-test = { path = '../test', version = '=0.3.40' }
27+
wasm-bindgen-futures = { path = '../futures', version = '0.4.40' }
28+
web-sys = { path = "../web-sys", version = "0.3.67", 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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.89" }
25-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.89" }
24+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.90" }
25+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.90" }

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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.89" }
24+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.90" }
2525
quote = "1.0"
2626

2727
[dev-dependencies]
2828
trybuild = "1.0"
29-
wasm-bindgen = { path = "../..", version = "0.2.89" }
30-
wasm-bindgen-futures = { path = "../futures", version = "0.4.39" }
31-
web-sys = { path = "../web-sys", version = "0.3.66", features = ["Worker"] }
29+
wasm-bindgen = { path = "../..", version = "0.2.90" }
30+
wasm-bindgen-futures = { path = "../futures", version = "0.4.40" }
31+
web-sys = { path = "../web-sys", version = "0.3.67", 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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR 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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared"

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.39"
3+
version = "0.3.40"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing macro for wasm-bindgen"
66
license = "MIT OR 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.39"
3+
version = "0.3.40"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing crate for wasm-bindgen"
66
license = "MIT OR Apache-2.0"
@@ -10,11 +10,11 @@ rust-version = "1.57"
1010

1111
[dependencies]
1212
console_error_panic_hook = '0.1'
13-
js-sys = { path = '../js-sys', version = '0.3.66' }
13+
js-sys = { path = '../js-sys', version = '0.3.67' }
1414
scoped-tls = "1.0"
15-
wasm-bindgen = { path = '../..', version = '0.2.89' }
16-
wasm-bindgen-futures = { path = '../futures', version = '0.4.39' }
17-
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.39' }
15+
wasm-bindgen = { path = '../..', version = '0.2.90' }
16+
wasm-bindgen-futures = { path = '../futures', version = '0.4.40' }
17+
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.40' }
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/threads-xform"
@@ -15,7 +15,7 @@ rust-version = "1.57"
1515
[dependencies]
1616
anyhow = "1.0"
1717
walrus = "0.20.2"
18-
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.89" }
18+
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.90" }
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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen developers"]
55
license = "MIT OR 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.89"
3+
version = "0.2.90"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/main/crates/wasm-interpreter"
@@ -16,7 +16,7 @@ rust-version = "1.57"
1616
anyhow = "1.0"
1717
log = "0.4"
1818
walrus = "0.20.2"
19-
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.89" }
19+
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.90" }
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.66"
3+
version = "0.3.67"
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.89" }
26-
js-sys = { path = '../js-sys', version = '0.3.66' }
25+
wasm-bindgen = { path = "../..", version = "0.2.90" }
26+
js-sys = { path = '../js-sys', version = '0.3.67' }
2727

2828
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
29-
wasm-bindgen-test = { path = '../test', version = '0.3.39' }
30-
wasm-bindgen-futures = { path = '../futures', version = '0.4.39' }
29+
wasm-bindgen-test = { path = '../test', version = '0.3.40' }
30+
wasm-bindgen-futures = { path = '../futures', version = '0.4.40' }
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.89", path = "../backend" }
24+
wasm-bindgen-backend = { version = "=0.2.90", 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.57"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
12+
wasm-bindgen = "0.2.90"

examples/canvas/Cargo.toml

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

1111
[dependencies]
12-
js-sys = "0.3.66"
13-
wasm-bindgen = "0.2.89"
12+
js-sys = "0.3.67"
13+
wasm-bindgen = "0.2.90"
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.57"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
12+
wasm-bindgen = "0.2.90"

examples/closures/Cargo.toml

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

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
13-
js-sys = "0.3.66"
12+
wasm-bindgen = "0.2.90"
13+
js-sys = "0.3.67"
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.57"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
13-
web-sys = { version = "0.3.66", features = ['console'] }
12+
wasm-bindgen = "0.2.90"
13+
web-sys = { version = "0.3.67", features = ['console'] }

examples/deno/Cargo.toml

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

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
12+
wasm-bindgen = "0.2.90"

examples/dom/Cargo.toml

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

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
12+
wasm-bindgen = "0.2.90"
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.57"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
12+
wasm-bindgen = "0.2.90"

examples/fetch/Cargo.toml

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

1111
[dependencies]
12-
wasm-bindgen = "0.2.89"
13-
js-sys = "0.3.66"
14-
wasm-bindgen-futures = "0.4.39"
12+
wasm-bindgen = "0.2.90"
13+
js-sys = "0.3.67"
14+
wasm-bindgen-futures = "0.4.40"
1515

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

0 commit comments

Comments
 (0)