Skip to content

Commit d9bc0a3

Browse files
committed
Bump to 0.2.19
1 parent c89182b commit d9bc0a3

File tree

14 files changed

+38
-38
lines changed

14 files changed

+38
-38
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen"
3-
version = "0.2.18"
3+
version = "0.2.19"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -28,13 +28,13 @@ nightly = []
2828
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
2929

3030
[dependencies]
31-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.18" }
31+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.19" }
3232
serde = { version = "1.0", optional = true }
3333
serde_json = { version = "1.0", optional = true }
3434

3535
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
36-
js-sys = { path = 'crates/js-sys', version = '0.2.3' }
37-
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.18' }
36+
js-sys = { path = 'crates/js-sys', version = '0.2.4' }
37+
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.19' }
3838
serde_derive = "1.0"
3939
wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
4040
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.18"
3+
version = "0.2.19"
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.18" }
24+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.19" }

crates/cli-support/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-cli-support"
3-
version = "0.2.18"
3+
version = "0.2.19"
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.18' }
21-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.18' }
20+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.19' }
21+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.19' }
2222
wasm-gc-api = "0.1.9"

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.18"
3+
version = "0.2.19"
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.18" }
27-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.18" }
26+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.19" }
27+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.19" }
2828
openssl = { version = '0.10.11', optional = true }
2929

3030
[features]

crates/futures/Cargo.toml

+4-4
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.18"
10+
version = "0.2.19"
1111

1212
[dependencies]
1313
futures = "0.1.20"
14-
js-sys = { path = "../js-sys", version = '0.2.3' }
15-
wasm-bindgen = { path = "../..", version = '0.2.18' }
14+
js-sys = { path = "../js-sys", version = '0.2.4' }
15+
wasm-bindgen = { path = "../..", version = '0.2.19' }
1616

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

crates/js-sys/Cargo.toml

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

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

2323
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2424
futures = "0.1.20"
25-
wasm-bindgen-test = { path = '../test', version = '=0.2.18' }
26-
wasm-bindgen-futures = { path = '../futures', version = '=0.2.18' }
25+
wasm-bindgen-test = { path = '../test', version = '=0.2.19' }
26+
wasm-bindgen-futures = { path = '../futures', version = '=0.2.19' }

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.18"
3+
version = "0.2.19"
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.18" }
22-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.18" }
21+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.19" }
22+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.19" }

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.18"
3+
version = "0.2.19"
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.18" }
21+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.19" }
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.18"
3+
version = "0.2.19"
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.18"
3+
version = "0.2.19"
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.2.18"
3+
version = "0.2.19"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing crate for wasm-bindgen"
66
license = "MIT/Apache-2.0"
@@ -9,11 +9,11 @@ repository = "https://github.com/rustwasm/wasm-bindgen"
99
[dependencies]
1010
console_error_panic_hook = '0.1'
1111
futures = "0.1"
12-
js-sys = { path = '../js-sys', version = '0.2.3' }
12+
js-sys = { path = '../js-sys', version = '0.2.4' }
1313
scoped-tls = "0.1"
14-
wasm-bindgen = { path = '../..', version = '0.2.18' }
15-
wasm-bindgen-futures = { path = '../futures', version = '0.2.18' }
16-
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.18' }
14+
wasm-bindgen = { path = '../..', version = '0.2.19' }
15+
wasm-bindgen-futures = { path = '../futures', version = '0.2.19' }
16+
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.19' }
1717

1818
[lib]
1919
test = false

crates/wasm-interpreter/Cargo.toml

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

crates/web-sys/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.17" }
1515
sourcefile = "0.1"
1616

1717
[dependencies]
18-
wasm-bindgen = { path = "../..", version = "0.2.18" }
19-
js-sys = { path = '../js-sys', version = '0.2.3' }
18+
wasm-bindgen = { path = "../..", version = "0.2.19" }
19+
js-sys = { path = '../js-sys', version = '0.2.4' }
2020

2121
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2222
futures = "0.1"
23-
wasm-bindgen-test = { path = '../test', version = '0.2.18' }
24-
wasm-bindgen-futures = { path = '../futures', version = '0.2.18' }
23+
wasm-bindgen-test = { path = '../test', version = '0.2.19' }
24+
wasm-bindgen-futures = { path = '../futures', version = '0.2.19' }

crates/webidl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.18", path = "../backend" }
22+
wasm-bindgen-backend = { version = "=0.2.19", path = "../backend" }
2323
weedle = "0.6"

0 commit comments

Comments
 (0)