Skip to content

Commit 4c27c34

Browse files
committed
Bump to 0.2.11
1 parent 7009c50 commit 4c27c34

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

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.10"
3+
version = "0.2.11"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -23,12 +23,12 @@ std = []
2323
serde-serialize = ["serde", "serde_json", "std"]
2424

2525
[dependencies]
26-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.10" }
26+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.11" }
2727
serde = { version = "1.0", optional = true }
2828
serde_json = { version = "1.0", optional = true }
2929

3030
[dev-dependencies]
31-
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.10' }
31+
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.11' }
3232

3333
[workspace]
3434
members = [

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.10"
3+
version = "0.2.11"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -16,6 +16,6 @@ spans = ["proc-macro2/nightly"]
1616
[dependencies]
1717
quote = '0.6'
1818
proc-macro2 = "0.4"
19-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.10" }
19+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.11" }
2020
syn = { version = '0.14', features = ['full', 'visit-mut'] }
2121
serde_json = "1.0"

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.10"
3+
version = "0.2.11"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -18,6 +18,6 @@ serde = "1.0"
1818
serde_derive = "1.0"
1919
serde_json = "1.0"
2020
tempfile = "3.0"
21-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.10' }
21+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.11' }
2222
wasm-gc-api = "0.1"
2323
wasmi = "0.2"

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.10"
3+
version = "0.2.11"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -18,8 +18,8 @@ failure = "0.1"
1818
parity-wasm = "0.28"
1919
serde = "1.0"
2020
serde_derive = "1.0"
21-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.10" }
22-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.10" }
21+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.11" }
22+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.11" }
2323

2424
[[bin]]
2525
name = "wasm-bindgen"

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.10"
3+
version = "0.2.11"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -20,4 +20,4 @@ spans = ["proc-macro2/nightly", "wasm-bindgen-backend/spans"]
2020
syn = { version = '0.14', features = ['full'] }
2121
quote = '0.6'
2222
proc-macro2 = "0.4"
23-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.10" }
23+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.11" }

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.10"
3+
version = "0.2.11"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"

0 commit comments

Comments
 (0)