Skip to content

Commit 3b4bf47

Browse files
committed
Bump to 0.2.5
1 parent c6f7d3d commit 3b4bf47

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.4"
3+
version = "0.2.5"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -21,10 +21,10 @@ default = ["std"]
2121
std = []
2222

2323
[dependencies]
24-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.4" }
24+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.5" }
2525

2626
[dev-dependencies]
27-
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.4' }
27+
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.5' }
2828

2929
[workspace]
3030
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.4"
3+
version = "0.2.5"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -13,6 +13,6 @@ 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.4" }
16+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
1717
syn = { version = '0.13', features = ['full', 'visit-mut'] }
1818
serde_json = "1.0"

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.4"
3+
version = "0.2.5"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -14,6 +14,6 @@ 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.4' }
17+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.5' }
1818
wasm-gc-api = "0.1"
1919
wasmi = { version = "0.1", features = ["opt-in-32bit"] }

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.4"
3+
version = "0.2.5"
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.4" }
21-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.4" }
20+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.5" }
21+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
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.4"
3+
version = "0.2.5"
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.4" }
22-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.4" }
21+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
22+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.5" }

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.4"
3+
version = "0.2.5"
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)