Skip to content

Commit 60ac573

Browse files
committed
Bump to 0.2.1
1 parent a558fa4 commit 60ac573

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

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"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -17,7 +17,7 @@ test = false
1717
doctest = false
1818

1919
[dependencies]
20-
wasm-bindgen-macro = { path = "crates/macro", version = "0.2" }
20+
wasm-bindgen-macro = { path = "crates/macro", version = "0.2.1" }
2121

2222
[dev-dependencies]
2323
test-support = { path = "crates/test-support" }

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.0"
3+
version = "0.2.1"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -13,5 +13,5 @@ Backend code generation of the wasm-bindgen tool
1313
[dependencies]
1414
quote = '0.5'
1515
proc-macro2 = { version = "0.3", features = ["nightly"] }
16-
wasm-bindgen-shared = { path = "../shared", version = "0.2.0" }
16+
wasm-bindgen-shared = { path = "../shared", version = "0.2.1" }
1717
syn = { version = '0.13', features = ['full'] }

crates/cli-support/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-cli-support"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -14,5 +14,5 @@ Shared support for the wasm-bindgen-cli package, an internal dependency
1414
base64 = "0.9"
1515
parity-wasm = "0.27"
1616
serde_json = "1.0"
17-
wasm-bindgen-shared = { path = "../shared", version = '0.2' }
17+
wasm-bindgen-shared = { path = "../shared", version = '0.2.1' }
1818
wasm-gc-api = "0.1"

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.0"
3+
version = "0.2.1"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -17,8 +17,8 @@ docopt = "0.8"
1717
parity-wasm = "0.27"
1818
serde = "1.0"
1919
serde_derive = "1.0"
20-
wasm-bindgen-cli-support = { path = "../cli-support", version = "0.2.0" }
21-
wasm-bindgen-shared = { path = "../shared", version = "0.2" }
20+
wasm-bindgen-cli-support = { path = "../cli-support", version = "0.2.1" }
21+
wasm-bindgen-shared = { path = "../shared", version = "0.2.1" }
2222

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

crates/macro/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"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -18,5 +18,5 @@ syn = { version = '0.13', features = ['full'] }
1818
quote = '0.5'
1919
proc-macro2 = { version = "0.3", features = ["nightly"] }
2020
serde_json = "1"
21-
wasm-bindgen-shared = { path = "../shared", version = "0.2.0" }
22-
wasm-bindgen-backend = { path = "../backend", version = "0.2.0" }
21+
wasm-bindgen-shared = { path = "../shared", version = "0.2.1" }
22+
wasm-bindgen-backend = { path = "../backend", version = "0.2.1" }

crates/shared/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-shared"
3-
version = "0.2.0"
3+
version = "0.2.1"
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)