mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-23 12:02:40 +03:00
Prepare v0.2.93 release (#4072)
This commit is contained in:
parent
f4176dadfa
commit
bf9807c5a0
@ -1,7 +1,9 @@
|
||||
# `wasm-bindgen` Change Log
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
## Unreleased
|
||||
## [0.2.93](https://github.com/rustwasm/wasm-bindgen/compare/0.2.92...0.2.93)
|
||||
|
||||
Released 2024-08-13
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -13,7 +13,7 @@ name = "wasm-bindgen"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen"
|
||||
rust-version = "1.57"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = ["serde-serialize"]
|
||||
@ -45,7 +45,7 @@ cfg-if = "1.0.0"
|
||||
once_cell = "1.12"
|
||||
serde = { version = "1.0", optional = true }
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.92" }
|
||||
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.93" }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
||||
js-sys = { path = 'crates/js-sys' }
|
||||
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-backend"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
|
||||
rust-version = "1.57"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[features]
|
||||
extra-traits = ["syn/extra-traits"]
|
||||
@ -24,4 +24,4 @@ once_cell = "1.12"
|
||||
proc-macro2 = "1.0"
|
||||
quote = '1.0'
|
||||
syn = { version = '2.0', features = ['full'] }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.92" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
|
||||
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-cli-support"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
@ -22,9 +22,9 @@ serde_json = "1.0"
|
||||
tempfile = "3.0"
|
||||
unicode-ident = "1.0.5"
|
||||
walrus = "0.21"
|
||||
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.92' }
|
||||
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.92' }
|
||||
wasm-bindgen-shared = { path = "../shared", version = '=0.2.92' }
|
||||
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.92' }
|
||||
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.92' }
|
||||
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.92' }
|
||||
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.93' }
|
||||
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.93' }
|
||||
wasm-bindgen-shared = { path = "../shared", version = '=0.2.93' }
|
||||
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.93' }
|
||||
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.93' }
|
||||
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.93' }
|
||||
|
@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-cli"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[package.metadata.binstall]
|
||||
bin-dir = "wasm-bindgen-{ version }-{ target }/{ bin }{ binary-ext }"
|
||||
@ -32,8 +32,8 @@ serde_derive = "1.0"
|
||||
serde_json = "1.0"
|
||||
ureq = { version = "2.7", default-features = false, features = ["brotli", "gzip"] }
|
||||
walrus = { version = "0.21", features = ['parallel'] }
|
||||
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.92" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.92" }
|
||||
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.93" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2"
|
||||
|
@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-externref-xform"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
walrus = "0.21"
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.92" }
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
rayon = "1.0"
|
||||
|
@ -10,7 +10,7 @@ name = "wasm-bindgen-futures"
|
||||
readme = "./README.md"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures"
|
||||
rust-version = "1.57"
|
||||
version = "0.4.42"
|
||||
version = "0.4.43"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -19,8 +19,8 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||
[dependencies]
|
||||
cfg-if = "1.0.0"
|
||||
futures-core = { version = '0.3.8', default-features = false, optional = true }
|
||||
js-sys = { path = "../js-sys", version = '0.3.69' }
|
||||
wasm-bindgen = { path = "../..", version = '0.2.92' }
|
||||
js-sys = { path = "../js-sys", version = '0.3.70' }
|
||||
wasm-bindgen = { path = "../..", version = '0.2.93' }
|
||||
|
||||
[features]
|
||||
futures-core-03-stream = ['futures-core']
|
||||
|
@ -14,14 +14,14 @@ name = "js-sys"
|
||||
readme = "./README.md"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"
|
||||
rust-version = "1.57"
|
||||
version = "0.3.69"
|
||||
version = "0.3.70"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
test = false
|
||||
|
||||
[dependencies]
|
||||
wasm-bindgen = { path = "../..", version = "0.2.92" }
|
||||
wasm-bindgen = { path = "../..", version = "0.2.93" }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
||||
wasm-bindgen-futures = { path = '../futures' }
|
||||
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-macro-support"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"
|
||||
rust-version = "1.57"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[features]
|
||||
extra-traits = ["syn/extra-traits"]
|
||||
@ -22,5 +22,5 @@ strict-macro = []
|
||||
proc-macro2 = "1.0"
|
||||
quote = '1.0'
|
||||
syn = { version = '2.0', features = ['visit', 'full'] }
|
||||
wasm-bindgen-backend = { path = "../backend", version = "=0.2.92" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.92" }
|
||||
wasm-bindgen-backend = { path = "../backend", version = "=0.2.93" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }
|
||||
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-macro"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
|
||||
rust-version = "1.57"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
@ -23,7 +23,7 @@ xxx_debug_only_print_generated_code = []
|
||||
|
||||
[dependencies]
|
||||
quote = "1.0"
|
||||
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.92" }
|
||||
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
js-sys = { path = "../js-sys" }
|
||||
|
@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-multi-value-xform"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/multi-value-xform"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
walrus = "0.21"
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.92" }
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
rayon = "1.0"
|
||||
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-shared"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared"
|
||||
rust-version = "1.57"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
# Because only a single `wasm_bindgen` version can be used in a dependency
|
||||
# graph, pretend we link a native library so that `cargo` will provide better
|
||||
|
@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-test-macro"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen"
|
||||
rust-version = "1.57"
|
||||
version = "0.3.42"
|
||||
version = "0.3.43"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
@ -7,16 +7,16 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-test"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen"
|
||||
rust-version = "1.57"
|
||||
version = "0.3.42"
|
||||
version = "0.3.43"
|
||||
|
||||
[dependencies]
|
||||
console_error_panic_hook = '0.1'
|
||||
gg-alloc = { version = "1.0", optional = true }
|
||||
js-sys = { path = '../js-sys', version = '0.3.69' }
|
||||
js-sys = { path = '../js-sys', version = '0.3.70' }
|
||||
scoped-tls = "1.0"
|
||||
wasm-bindgen = { path = '../..', version = '0.2.92' }
|
||||
wasm-bindgen-futures = { path = '../futures', version = '0.4.42' }
|
||||
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.42' }
|
||||
wasm-bindgen = { path = '../..', version = '0.2.93' }
|
||||
wasm-bindgen-futures = { path = '../futures', version = '0.4.43' }
|
||||
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.43' }
|
||||
|
||||
[target.'cfg(all(target_arch = "wasm32", wasm_bindgen_unstable_test_coverage))'.dependencies]
|
||||
minicov = "0.3"
|
||||
|
@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-threads-xform"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/threads-xform"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
walrus = "0.21"
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.92" }
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
rayon = "1.0"
|
||||
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-wasm-conventions"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-conventions"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
leb128 = "0.2"
|
||||
|
@ -11,13 +11,13 @@ license = "MIT OR Apache-2.0"
|
||||
name = "wasm-bindgen-wasm-interpreter"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/main/crates/wasm-interpreter"
|
||||
rust-version = "1.76"
|
||||
version = "0.2.92"
|
||||
version = "0.2.93"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
log = "0.4"
|
||||
walrus = "0.21"
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.92" }
|
||||
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.93" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
|
@ -12,7 +12,7 @@ name = "web-sys"
|
||||
readme = "./README.md"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys"
|
||||
rust-version = "1.57"
|
||||
version = "0.3.69"
|
||||
version = "0.3.70"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -23,8 +23,8 @@ doctest = false
|
||||
test = false
|
||||
|
||||
[dependencies]
|
||||
js-sys = { path = '../js-sys', version = '0.3.69' }
|
||||
wasm-bindgen = { path = "../..", version = "0.2.92" }
|
||||
js-sys = { path = '../js-sys', version = '0.3.70' }
|
||||
wasm-bindgen = { path = "../..", version = "0.2.93" }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
||||
futures = "0.3"
|
||||
|
@ -47,6 +47,8 @@ const CRATES_TO_AVOID_PUBLISH: &[&str] = &[
|
||||
"typescript-tests",
|
||||
"wasm-bindgen-webidl",
|
||||
"example-tests",
|
||||
"msrv-cli-test",
|
||||
"msrv-library-test",
|
||||
];
|
||||
|
||||
struct Crate {
|
||||
|
Loading…
Reference in New Issue
Block a user