Skip to content

Commit 98008b9

Browse files
committed
Bump to 0.2.18
At the same time, also add a `publish.rs` script to ease our publishing woes.
1 parent 85fd49f commit 98008b9

File tree

16 files changed

+238
-40
lines changed

16 files changed

+238
-40
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ package-lock.json
77
npm-shrinkwrap.json
88
yarn.lock
99
*.d.ts
10+
/publish
11+
/publish.exe

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -28,15 +28,15 @@ nightly = []
2828
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
2929

3030
[dependencies]
31-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.17" }
31+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.18" }
3232
serde = { version = "1.0", optional = true }
3333
serde_json = { version = "1.0", optional = true }
3434

3535
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
36-
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.17' }
36+
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.18' }
3737
serde_derive = "1.0"
38-
wasm-bindgen-test-crate-a = { path = 'tests/crates/a' }
39-
wasm-bindgen-test-crate-b = { path = 'tests/crates/b' }
38+
wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
39+
wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }
4040

4141
[workspace]
4242
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.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
@@ -21,4 +21,4 @@ proc-macro2 = "0.4.8"
2121
quote = '0.6'
2222
serde_json = "1.0"
2323
syn = { version = '0.14', features = ['full', 'visit'] }
24-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }
24+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.18" }

crates/cli-support/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-support"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"
@@ -17,6 +17,6 @@ parity-wasm = "0.31"
1717
serde = "1.0"
1818
serde_json = "1.0"
1919
tempfile = "3.0"
20-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.17' }
21-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.17' }
20+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.18' }
21+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.18' }
2222
wasm-gc-api = "0.1.9"

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.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
@@ -23,8 +23,8 @@ rouille = { version = "2.1.0", default-features = false }
2323
serde = "1.0"
2424
serde_derive = "1.0"
2525
serde_json = "1.0"
26-
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.17" }
27-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }
26+
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.18" }
27+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.18" }
2828
openssl = { version = '0.10.11', optional = true }
2929

3030
[features]

crates/futures/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ license = "MIT/Apache-2.0"
77
name = "wasm-bindgen-futures"
88
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures"
99
readme = "./README.md"
10-
version = "0.2.17"
10+
version = "0.2.18"
1111

1212
[dependencies]
1313
futures = "0.1.20"
14-
js-sys = { path = "../js-sys", version = '0.2.1' }
15-
wasm-bindgen = { path = "../..", version = '0.2.17' }
14+
js-sys = { path = "../js-sys", version = '0.2.3' }
15+
wasm-bindgen = { path = "../..", version = '0.2.18' }
1616

1717
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
18-
wasm-bindgen-test = { path = '../test', version = '0.2.17' }
18+
wasm-bindgen-test = { path = '../test', version = '0.2.18' }

crates/js-sys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "js-sys"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["The wasm-bindgen Developers"]
55
readme = "./README.md"
66
categories = ["wasm"]
@@ -18,9 +18,9 @@ test = false
1818
doctest = false
1919

2020
[dependencies]
21-
wasm-bindgen = { path = "../..", version = "0.2.17" }
21+
wasm-bindgen = { path = "../..", version = "0.2.18" }
2222

2323
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2424
futures = "0.1.20"
25-
wasm-bindgen-test = { path = '../test', version = '=0.2.17' }
26-
wasm-bindgen-futures = { path = '../futures', version = '=0.2.17' }
25+
wasm-bindgen-test = { path = '../test', version = '=0.2.18' }
26+
wasm-bindgen-futures = { path = '../futures', version = '=0.2.18' }

crates/macro-support/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-support"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"
@@ -18,5 +18,5 @@ extra-traits = ["syn/extra-traits"]
1818
syn = { version = '0.14', features = ['full'] }
1919
quote = '0.6'
2020
proc-macro2 = "0.4.9"
21-
wasm-bindgen-backend = { path = "../backend", version = "=0.2.17" }
22-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.17" }
21+
wasm-bindgen-backend = { path = "../backend", version = "=0.2.18" }
22+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.18" }

crates/macro/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-macro"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
@@ -18,5 +18,5 @@ spans = ["wasm-bindgen-macro-support/spans"]
1818
xxx_debug_only_print_generated_code = []
1919

2020
[dependencies]
21-
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.17" }
21+
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.18" }
2222
quote = "0.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.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared"

crates/test-macro/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-test-macro"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing macro for wasm-bindgen"
66
license = "MIT/Apache-2.0"

crates/test/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-bindgen-test"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
description = "Internal testing crate for wasm-bindgen"
66
license = "MIT/Apache-2.0"
@@ -9,11 +9,11 @@ repository = "https://github.com/rustwasm/wasm-bindgen"
99
[dependencies]
1010
console_error_panic_hook = '0.1'
1111
futures = "0.1"
12-
js-sys = { path = '../js-sys', version = '0.2.1' }
12+
js-sys = { path = '../js-sys', version = '0.2.3' }
1313
scoped-tls = "0.1"
14-
wasm-bindgen = { path = '../..', version = '0.2.17' }
15-
wasm-bindgen-futures = { path = '../futures', version = '0.2.17' }
16-
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.17' }
14+
wasm-bindgen = { path = '../..', version = '0.2.18' }
15+
wasm-bindgen-futures = { path = '../futures', version = '0.2.18' }
16+
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.18' }
1717

1818
[lib]
1919
test = false

crates/wasm-interpreter/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-wasm-interpreter"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-interpreter"

crates/web-sys/Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.17" }
1515
sourcefile = "0.1"
1616

1717
[dependencies]
18-
wasm-bindgen = { path = "../..", version = "0.2.17" }
19-
js-sys = { path = '../js-sys', version = '0.2.1' }
18+
wasm-bindgen = { path = "../..", version = "0.2.18" }
19+
js-sys = { path = '../js-sys', version = '0.2.3' }
2020

2121
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2222
futures = "0.1"
23-
js-sys = { path = '../js-sys', version = '0.2.1' }
24-
wasm-bindgen-test = { path = '../test', version = '0.2.17' }
25-
wasm-bindgen-futures = { path = '../futures', version = '0.2.17' }
23+
wasm-bindgen-test = { path = '../test', version = '0.2.18' }
24+
wasm-bindgen-futures = { path = '../futures', version = '0.2.18' }

crates/webidl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ log = "0.4.1"
1919
proc-macro2 = "0.4.8"
2020
quote = '0.6'
2121
syn = { version = '0.14', features = ['full'] }
22-
wasm-bindgen-backend = { version = "=0.2.17", path = "../backend" }
22+
wasm-bindgen-backend = { version = "=0.2.18", path = "../backend" }
2323
weedle = "0.6"

0 commit comments

Comments
 (0)