Skip to content

Commit eb9a652

Browse files
committed
Bump to 0.2.2
1 parent 5d52bf8 commit eb9a652

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

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

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

2222
[dev-dependencies]
23-
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '0.2.1' }
23+
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.2' }
2424

2525
[workspace]
2626
members = [

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.1"
3+
version = "0.2.2"
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.1" }
16+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.2" }
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.1"
3+
version = "0.2.2"
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.1' }
17+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.2' }
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.1"
3+
version = "0.2.2"
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.1" }
21-
wasm-bindgen-shared = { path = "../shared", version = "0.2.1" }
20+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.2" }
21+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.2" }
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.1"
3+
version = "0.2.2"
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.1" }
22-
wasm-bindgen-backend = { path = "../backend", version = "0.2.1" }
21+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.2" }
22+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.2" }

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.1"
3+
version = "0.2.2"
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)