Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a881a83

Browse files
authoredAug 19, 2021
Bump to 0.2.76 (#2661)
1 parent c583098 commit a881a83

File tree

48 files changed

+108
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+108
-100
lines changed
 

‎CHANGELOG.md‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
--------------------------------------------------------------------------------
44

5+
## 0.2.76
6+
7+
Released 2021-08-19.
8+
9+
[changes](https://github.com/rustwasm/wasm-bindgen/compare/0.2.75...0.2.76)
10+
11+
--------------------------------------------------------------------------------
12+
513
## 0.2.75
614

715
Released 2021-08-02.

‎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.75"
3+
version = "0.2.76"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -36,15 +36,15 @@ strict-macro = ["wasm-bindgen-macro/strict-macro"]
3636
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
3737

3838
[dependencies]
39-
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.75" }
39+
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.76" }
4040
serde = { version = "1.0", optional = true }
4141
serde_json = { version = "1.0", optional = true }
4242
cfg-if = "1.0.0"
4343

4444
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
45-
js-sys = { path = 'crates/js-sys', version = '0.3.52' }
46-
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.25' }
47-
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.25' }
45+
js-sys = { path = 'crates/js-sys', version = '0.3.53' }
46+
wasm-bindgen-test = { path = 'crates/test', version = '=0.3.26' }
47+
wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.26' }
4848
serde_derive = "1.0"
4949
wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
5050
wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }

‎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.75"
3+
version = "0.2.76"
44
authors = ["The wasm-bindgen Developers"]
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
@@ -22,4 +22,4 @@ log = "0.4"
2222
proc-macro2 = "1.0"
2323
quote = '1.0'
2424
syn = { version = '1.0', features = ['full'] }
25-
wasm-bindgen-shared = { path = "../shared", version = "=0.2.75" }
25+
wasm-bindgen-shared = { path = "../shared", version = "=0.2.76" }

‎crates/cli-support/Cargo.toml‎

Lines changed: 7 additions & 7 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.75"
3+
version = "0.2.76"
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"
@@ -19,12 +19,12 @@ rustc-demangle = "0.1.13"
1919
serde_json = "1.0"
2020
tempfile = "3.0"
2121
walrus = "0.19.0"
22-
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.75' }
23-
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.75' }
24-
wasm-bindgen-shared = { path = "../shared", version = '=0.2.75' }
25-
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.75' }
26-
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.75' }
27-
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.75' }
22+
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.76' }
23+
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.76' }
24+
wasm-bindgen-shared = { path = "../shared", version = '=0.2.76' }
25+
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.76' }
26+
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.76' }
27+
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.76' }
2828
wit-text = "0.8.0"
2929
wit-walrus = "0.6.0"
3030
wit-validator = "0.2.0"

0 commit comments

Comments
 (0)
Please sign in to comment.