Skip to content

Commit acb5eac

Browse files
committed
Bump to 0.2.6
1 parent b7bbcf5 commit acb5eac

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.5"
3+
version = "0.2.6"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -22,10 +22,10 @@ spans = ["wasm-bindgen-macro/spans"]
2222
std = []
2323

2424
[dependencies]
25-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.5" }
25+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.6" }
2626

2727
[dev-dependencies]
28-
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.5' }
28+
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.6' }
2929

3030
[workspace]
3131
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.5"
3+
version = "0.2.6"
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.5'
1818
proc-macro2 = "0.3"
19-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
19+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.6" }
2020
syn = { version = '0.13', features = ['full', 'visit-mut'] }
2121
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.5"
3+
version = "0.2.6"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -17,6 +17,6 @@ parity-wasm = "0.28"
1717
serde = "1.0"
1818
serde_derive = "1.0"
1919
serde_json = "1.0"
20-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.5' }
20+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.6' }
2121
wasm-gc-api = "0.1"
2222
wasmi = "0.2"

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.5"
3+
version = "0.2.6"
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.5" }
22-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
21+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.6" }
22+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.6" }
2323

2424
[[bin]]
2525
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.5"
3+
version = "0.2.6"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/alexcrichton/wasm-bindgen"
@@ -21,5 +21,5 @@ syn = { version = '0.13', features = ['full'] }
2121
quote = '0.5'
2222
proc-macro2 = "0.3"
2323
serde_json = "1"
24-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.5" }
25-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.5" }
24+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.6" }
25+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.6" }

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.5"
3+
version = "0.2.6"
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)