Skip to content

Commit 57693ee

Browse files
committed
Bump to 0.2.17
1 parent a4e8fb6 commit 57693ee

File tree

14 files changed

+50
-33
lines changed

14 files changed

+50
-33
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,23 @@ Released YYYY-MM-DD.
3232

3333
--------------------------------------------------------------------------------
3434

35+
## 0.2.17
36+
37+
Released 2018-08-16.
38+
39+
### Added
40+
41+
* Greatly expanded documentation in the wasm-bindgen guide.
42+
* Added bindings to `js-sys` for `Intl.DateTimeFormat`
43+
* Added a number of `extends` attributes for types in `js-sys`
44+
45+
### Fixed
46+
47+
* Fixed compile on latest nightly with latest `proc-macro2`
48+
* Fixed compilation in some scenarios on Windows with paths in `module` paths
49+
50+
--------------------------------------------------------------------------------
51+
3552
## 0.2.16
3653

3754
Released 2018-08-13.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -27,12 +27,12 @@ serde-serialize = ["serde", "serde_json", "std"]
2727
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
2828

2929
[dependencies]
30-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.16" }
30+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.17" }
3131
serde = { version = "1.0", optional = true }
3232
serde_json = { version = "1.0", optional = true }
3333

3434
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
35-
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.16' }
35+
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.17' }
3636
serde_derive = "1.0"
3737
wasm-bindgen-test-crate-a = { path = 'tests/crates/a' }
3838
wasm-bindgen-test-crate-b = { path = 'tests/crates/b' }

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.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
@@ -21,4 +21,4 @@ proc-macro2 = "0.4.8"
2121
quote = '0.6'
2222
serde_json = "1.0"
2323
syn = { version = '0.14', features = ['full', 'visit'] }
24-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.16" }
24+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }

crates/cli-support/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli-support"
3-
version = "0.2.16"
3+
version = "0.2.17"
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"
@@ -17,6 +17,6 @@ parity-wasm = "0.31"
1717
serde = "1.0"
1818
serde_json = "1.0"
1919
tempfile = "3.0"
20-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.16' }
20+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.17' }
2121
wasm-gc-api = "0.1.9"
2222
wasmi = "0.3"

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.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
@@ -23,8 +23,8 @@ rouille = { version = "2.1.0", default-features = false }
2323
serde = "1.0"
2424
serde_derive = "1.0"
2525
serde_json = "1.0"
26-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.16" }
27-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.16" }
26+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.17" }
27+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }
2828
openssl = { version = '0.10.11', optional = true }
2929

3030
[features]

crates/futures/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ 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.2.16"
10+
version = "0.2.17"
1111

1212
[dependencies]
1313
futures = "0.1.20"
1414
js-sys = { path = "../js-sys", version = '0.2.1' }
15-
wasm-bindgen = { path = "../..", version = '0.2.16' }
15+
wasm-bindgen = { path = "../..", version = '0.2.17' }
1616

1717
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
18-
wasm-bindgen-test = { path = '../test', version = '0.2.16' }
18+
wasm-bindgen-test = { path = '../test', version = '0.2.17' }

crates/js-sys/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "js-sys"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["The wasm-bindgen Developers"]
55
readme = "./README.md"
66
categories = ["wasm"]
@@ -18,7 +18,7 @@ test = false
1818
doctest = false
1919

2020
[dependencies]
21-
wasm-bindgen = { path = "../..", version = "0.2.16" }
21+
wasm-bindgen = { path = "../..", version = "0.2.17" }
2222

2323
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
24-
wasm-bindgen-test = { path = '../test', version = '=0.2.16' }
24+
wasm-bindgen-test = { path = '../test', version = '=0.2.17' }

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.16"
3+
version = "0.2.17"
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"
@@ -18,5 +18,5 @@ extra-traits = ["syn/extra-traits"]
1818
syn = { version = '0.14', features = ['full'] }
1919
quote = '0.6'
2020
proc-macro2 = "0.4.9"
21-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.16" }
22-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.16" }
21+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.17" }
22+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }

crates/macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-macro"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
@@ -18,5 +18,5 @@ spans = ["wasm-bindgen-macro-support/spans"]
1818
xxx_debug_only_print_generated_code = []
1919

2020
[dependencies]
21-
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.16" }
21+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.17" }
2222
quote = "0.6"

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.16"
3+
version = "0.2.17"
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/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.2.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing macro for wasm-bindgen"
66
license = "MIT/Apache-2.0"

crates/test/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-test"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing crate for wasm-bindgen"
66
license = "MIT/Apache-2.0"
@@ -11,9 +11,9 @@ console_error_panic_hook = '0.1'
1111
futures = "0.1"
1212
js-sys = { path = '../js-sys', version = '0.2.1' }
1313
scoped-tls = "0.1"
14-
wasm-bindgen = { path = '../..', version = '0.2.16' }
15-
wasm-bindgen-futures = { path = '../futures', version = '0.2.16' }
16-
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.16' }
14+
wasm-bindgen = { path = '../..', version = '0.2.17' }
15+
wasm-bindgen-futures = { path = '../futures', version = '0.2.17' }
16+
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.17' }
1717

1818
[lib]
1919
test = false

crates/web-sys/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ test = false
1111
[build-dependencies]
1212
env_logger = "0.5.10"
1313
failure = "0.1.2"
14-
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.16" }
14+
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.17" }
1515
sourcefile = "0.1"
1616

1717
[dependencies]
18-
wasm-bindgen = { path = "../..", version = "0.2.16" }
18+
wasm-bindgen = { path = "../..", version = "0.2.17" }
1919
js-sys = { path = '../js-sys', version = '0.2.1' }
2020

2121
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2222
futures = "0.1"
2323
js-sys = { path = '../js-sys', version = '0.2.1' }
24-
wasm-bindgen-test = { path = '../test', version = '0.2.16' }
25-
wasm-bindgen-futures = { path = '../futures', version = '0.2.16' }
24+
wasm-bindgen-test = { path = '../test', version = '0.2.17' }
25+
wasm-bindgen-futures = { path = '../futures', version = '0.2.17' }

crates/webidl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-webidl"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
categories = ["wasm"]
@@ -19,5 +19,5 @@ log = "0.4.1"
1919
proc-macro2 = "0.4.8"
2020
quote = '0.6'
2121
syn = { version = '0.14', features = ['full'] }
22-
wasm-bindgen-backend = { version = "=0.2.16", path = "../backend" }
22+
wasm-bindgen-backend = { version = "=0.2.17", path = "../backend" }
2323
weedle = "0.6"

0 commit comments

Comments
 (0)