Skip to content

Commit 0b5f0ee

Browse files
ranileactions-userdaxpeddaLiamolucko
authored
Bump versions for v0.2.88 (#3676)
* bump * Bump version in changelog * Bump date in changelog Co-authored-by: Liam Murphy <[email protected]> --------- Co-authored-by: GitHub Actions <[email protected]> Co-authored-by: daxpedda <[email protected]> Co-authored-by: Liam Murphy <[email protected]>
1 parent bd596dc commit 0b5f0ee

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

Lines changed: 3 additions & 1 deletion
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.87...main)
4+
## [0.2.88](https://github.com/rustwasm/wasm-bindgen/compare/0.2.87...0.2.88)
5+
6+
Released 2023-11-01
57

68
### Added
79

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.87" }
45+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.88" }
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.64' }
52-
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.37' }
53-
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.37' }
51+
js-sys = { path = 'crates/js-sys', version = '0.3.65' }
52+
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.38' }
53+
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.38' }
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-backend"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.87" }
26+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.88" }

crates/cli-support/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli-support"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.19.0"
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' }
23+
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.88' }
24+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.88' }
25+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.88' }
26+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.88' }
27+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.88' }
28+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.88' }
2929
unicode-ident = "1.0.5"

crates/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.19.0", features = ['parallel'] }
37-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.87" }
38-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.87" }
37+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.88" }
38+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.88" }
3939

4040
[dev-dependencies]
4141
assert_cmd = "1.0"

crates/externref-xform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-externref-xform"
3-
version = "0.2.87"
3+
version = "0.2.88"
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

Lines changed: 4 additions & 4 deletions
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.37"
10+
version = "0.4.38"
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.64' }
17-
wasm-bindgen = { path = "../..", version = '0.2.87' }
16+
js-sys = { path = "../js-sys", version = '0.3.65' }
17+
wasm-bindgen = { path = "../..", version = '0.2.88' }
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.37' }
32+
wasm-bindgen-test = { path = '../test', version = '0.3.38' }
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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "js-sys"
3-
version = "0.3.64"
3+
version = "0.3.65"
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.87" }
23+
wasm-bindgen = { path = "../..", version = "0.2.88" }
2424

2525
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
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"] }
26+
wasm-bindgen-test = { path = '../test', version = '=0.3.38' }
27+
wasm-bindgen-futures = { path = '../futures', version = '0.4.38' }
28+
web-sys = { path = "../web-sys", version = "0.3.65", features = ["Headers", "Response", "ResponseInit"] }

crates/macro-support/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro-support"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.87" }
25-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.87" }
24+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.88" }
25+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.88" }

crates/macro/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro"
3-
version = "0.2.87"
3+
version = "0.2.88"
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.87" }
24+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.88" }
2525
quote = "1.0"
2626

2727
[dev-dependencies]
2828
trybuild = "1.0"
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"] }
29+
wasm-bindgen = { path = "../..", version = "0.2.88" }
30+
wasm-bindgen-futures = { path = "../futures", version = "0.4.38" }
31+
web-sys = { path = "../web-sys", version = "0.3.65", features = ["Worker"] }

0 commit comments

Comments
 (0)