Skip to content

Commit a20dd26

Browse files
authored
Bump to 0.2.52 (#1833)
1 parent e880baf commit a20dd26

File tree

42 files changed

+119
-87
lines changed

Some content is hidden

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

42 files changed

+119
-87
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
--------------------------------------------------------------------------------
44

5+
## 0.2.52
6+
7+
Released 2019-10-24.
8+
9+
### Added
10+
11+
* The support for wasm-interface-types now uses multi-value by default.
12+
[#1805](https://github.com/rustwasm/wasm-bindgen/pull/1805)
13+
14+
* The Worklet IDL has been updated.
15+
[#1817](https://github.com/rustwasm/wasm-bindgen/pull/1817)
16+
17+
* The HTMLInputElement type has selectionStart and selectionEnd properties now.
18+
[#1811](https://github.com/rustwasm/wasm-bindgen/pull/1811)
19+
20+
* An `unintern` function has been added to remove an interned string from the
21+
cache.
22+
[#1828](https://github.com/rustwasm/wasm-bindgen/pull/1828)
23+
24+
### Changed
25+
26+
* Some WebIDL indexing getters have been corrected to reflect that they can
27+
throw and/or return `undefined`
28+
[#1789](https://github.com/rustwasm/wasm-bindgen/pull/1789)
29+
30+
### Fixed
31+
32+
* A bug with `TextDecoder` and Safari has been fxied
33+
[#1789](https://github.com/rustwasm/wasm-bindgen/pull/1789)
34+
35+
--------------------------------------------------------------------------------
36+
537
## 0.2.51
638

739
Released 2019-09-26.

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.51"
3+
version = "0.2.52"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -36,15 +36,15 @@ strict-macro = ["wasm-bindgen-macro/strict-macro"]
3636
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
3737

3838
[dependencies]
39-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.51" }
39+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.52" }
4040
serde = { version = "1.0", optional = true }
4141
serde_json = { version = "1.0", optional = true }
4242
cfg-if = "0.1.9"
4343

4444
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
45-
js-sys = { path = 'crates/js-sys', version = '0.3.28' }
46-
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.1' }
47-
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.1' }
45+
js-sys = { path = 'crates/js-sys', version = '0.3.29' }
46+
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.2' }
47+
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.2' }
4848
serde_derive = "1.0"
4949
wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
5050
wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }

crates/anyref-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-anyref-xform"
3-
version = "0.2.51"
3+
version = "0.2.52"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/anyref-xform"

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.51"
3+
version = "0.2.52"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
@@ -22,4 +22,4 @@ log = "0.4"
2222
proc-macro2 = "1.0"
2323
quote = '1.0'
2424
syn = { version = '1.0', features = ['full'] }
25-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.51" }
25+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.52" }

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.51"
3+
version = "0.2.52"
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"
@@ -19,10 +19,10 @@ rustc-demangle = "0.1.13"
1919
serde_json = "1.0"
2020
tempfile = "3.0"
2121
walrus = "0.12.0"
22-
wasm-bindgen-anyref-xform = { path = '../anyref-xform', version = '=0.2.51' }
23-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.51' }
24-
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.51' }
25-
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.51' }
26-
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.51' }
27-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.51' }
22+
wasm-bindgen-anyref-xform = { path = '../anyref-xform', version = '=0.2.52' }
23+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.52' }
24+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.52' }
25+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.52' }
26+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.52' }
27+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.52' }
2828
wasm-webidl-bindings = "0.5.0"

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.51"
3+
version = "0.2.52"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
@@ -25,8 +25,8 @@ serde = { version = "1.0", features = ['derive'] }
2525
serde_derive = "1.0"
2626
serde_json = "1.0"
2727
walrus = { version = "0.12.0", features = ['parallel'] }
28-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.51" }
29-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.51" }
28+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.52" }
29+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.52" }
3030

3131
[dev-dependencies]
3232
assert_cmd = "0.11"

crates/futures/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ 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.1"
10+
version = "0.4.2"
1111
edition = "2018"
1212

1313
[dependencies]
1414
cfg-if = "0.1.9"
15-
js-sys = { path = "../js-sys", version = '0.3.28' }
16-
wasm-bindgen = { path = "../..", version = '0.2.51' }
15+
js-sys = { path = "../js-sys", version = '0.3.29' }
16+
wasm-bindgen = { path = "../..", version = '0.2.52' }
1717

1818
[target.'cfg(target_feature = "atomics")'.dependencies.web-sys]
1919
path = "../web-sys"
@@ -24,5 +24,5 @@ features = [
2424
]
2525

2626
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
27-
wasm-bindgen-test = { path = '../test', version = '0.3.1' }
27+
wasm-bindgen-test = { path = '../test', version = '0.3.2' }
2828
futures-channel-preview = { version = "0.3.0-alpha.18" }

crates/js-sys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "js-sys"
3-
version = "0.3.28"
3+
version = "0.3.29"
44
authors = ["The wasm-bindgen Developers"]
55
readme = "./README.md"
66
categories = ["wasm"]
@@ -19,8 +19,8 @@ test = false
1919
doctest = false
2020

2121
[dependencies]
22-
wasm-bindgen = { path = "../..", version = "0.2.51" }
22+
wasm-bindgen = { path = "../..", version = "0.2.52" }
2323

2424
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
25-
wasm-bindgen-test = { path = '../test', version = '=0.3.1' }
26-
wasm-bindgen-futures = { path = '../futures', version = '0.4.1' }
25+
wasm-bindgen-test = { path = '../test', version = '=0.3.2' }
26+
wasm-bindgen-futures = { path = '../futures', version = '0.4.2' }

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.51"
3+
version = "0.2.52"
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"
@@ -20,5 +20,5 @@ strict-macro = []
2020
syn = { version = '1.0', features = ['visit'] }
2121
quote = '1.0'
2222
proc-macro2 = "1.0"
23-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.51" }
24-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.51" }
23+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.52" }
24+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.52" }

crates/macro/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro"
3-
version = "0.2.51"
3+
version = "0.2.52"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
@@ -20,10 +20,10 @@ xxx_debug_only_print_generated_code = []
2020
strict-macro = ["wasm-bindgen-macro-support/strict-macro"]
2121

2222
[dependencies]
23-
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.51" }
23+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.52" }
2424
quote = "1.0"
2525

2626
[dev-dependencies]
2727
trybuild = "1.0"
28-
wasm-bindgen = { path = "../..", version = "0.2.51", features = ['strict-macro'] }
29-
wasm-bindgen-futures = { path = "../futures", version = "0.4.1" }
28+
wasm-bindgen = { path = "../..", version = "0.2.52", features = ['strict-macro'] }
29+
wasm-bindgen-futures = { path = "../futures", version = "0.4.2" }

0 commit comments

Comments
 (0)