Skip to content

Prepare v0.2.99 release #4331

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# `wasm-bindgen` Change Log
--------------------------------------------------------------------------------

## [0.2.99](https://github.com/rustwasm/wasm-bindgen/compare/0.2.98...0.2.99)

Released 2024-12-07

### Fixed

- Mark `wasm-bindgen` v0.2.98 only compatible with `wasm-bindgen-cli` of the same version.
[#4331](https://github.com/rustwasm/wasm-bindgen/pull/4331)

--------------------------------------------------------------------------------

## [0.2.98](https://github.com/rustwasm/wasm-bindgen/compare/0.2.97...0.2.98)

Released 2024-12-07
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name = "wasm-bindgen"
readme = "README.md"
repository = "https://github.com/rustwasm/wasm-bindgen"
rust-version = "1.57"
version = "0.2.98"
version = "0.2.99"

[package.metadata.docs.rs]
features = ["serde-serialize"]
Expand Down Expand Up @@ -45,7 +45,7 @@ cfg-if = "1.0.0"
once_cell = { version = "1.12", default-features = false }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.98", default-features = false }
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.99", default-features = false }

[dev-dependencies]
wasm-bindgen-test = { path = 'crates/test' }
Expand Down
4 changes: 2 additions & 2 deletions crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[features]
default = ["std"]
Expand All @@ -25,7 +25,7 @@ log = "0.4"
proc-macro2 = "1.0"
quote = '1.0'
syn = { version = '2.0', features = ['full'] }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.98" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.99" }

[lints]
workspace = true
14 changes: 7 additions & 7 deletions crates/cli-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
anyhow = "1.0"
Expand All @@ -23,12 +23,12 @@ serde_json = "1.0"
tempfile = "3.0"
unicode-ident = "1.0.5"
walrus = { version = "0.23", features = ['parallel'] }
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.98' }
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.98' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.98' }
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.98' }
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.98' }
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.98' }
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.99' }
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.99' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.99' }
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.99' }
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.99' }
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.99' }

[lints]
workspace = true
6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[package.metadata.binstall]
bin-dir = "wasm-bindgen-{ version }-{ target }/{ bin }{ binary-ext }"
Expand All @@ -32,8 +32,8 @@ serde_derive = "1.0"
serde_json = "1.0"
ureq = { version = "2.7", default-features = false, features = ["brotli", "gzip"] }
walrus = "0.23"
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.98" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.98" }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.99" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.99" }

[dev-dependencies]
assert_cmd = "2"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/tests/reference/web-sys.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export function get_media_source() {

const __wbindgen_enum_MediaSourceEnum = ["camera", "screen", "application", "window", "browser", "microphone", "audioCapture", "other"];

export function __wbg_new_f3433bf7bc73881c() { return handleError(function (arg0, arg1) {
export function __wbg_new_17f755666e48d1d8() { return handleError(function (arg0, arg1) {
const ret = new URL(getStringFromWasm0(arg0, arg1));
return ret;
}, arguments) };
Expand Down
4 changes: 2 additions & 2 deletions crates/externref-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
anyhow = "1.0"
walrus = "0.23"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.98" }
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.99" }

[dev-dependencies]
rayon = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.48"
version = "0.4.49"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -19,17 +19,17 @@ 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.75', default-features = false }
js-sys = { path = "../js-sys", version = '=0.3.76', default-features = false }
once_cell = { version = "1.12", default-features = false }
wasm-bindgen = { path = "../..", version = '=0.2.98', default-features = false }
wasm-bindgen = { path = "../..", version = '=0.2.99', default-features = false }

[features]
default = ["std"]
futures-core-03-stream = ['futures-core']
std = ["wasm-bindgen/std", "js-sys/std", "web-sys/std", "once_cell/std"]

[target.'cfg(target_feature = "atomics")'.dependencies]
web-sys = { path = "../web-sys", version = "=0.3.75", default-features = false, features = [
web-sys = { path = "../web-sys", version = "=0.3.76", default-features = false, features = [
"MessageEvent",
"Worker",
] }
Expand Down
4 changes: 2 additions & 2 deletions crates/js-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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.75"
version = "0.3.76"

[lib]
doctest = false
Expand All @@ -26,7 +26,7 @@ std = ["wasm-bindgen/std"]

[dependencies]
once_cell = { version = "1.12", default-features = false }
wasm-bindgen = { path = "../..", version = "=0.2.98", default-features = false }
wasm-bindgen = { path = "../..", version = "=0.2.99", default-features = false }

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-futures = { path = '../futures' }
Expand Down
6 changes: 3 additions & 3 deletions crates/macro-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[features]
default = ["std"]
Expand All @@ -24,8 +24,8 @@ strict-macro = []
proc-macro2 = "1.0"
quote = '1.0'
syn = { version = '2.0', features = ['visit', 'visit-mut', 'full'] }
wasm-bindgen-backend = { path = "../backend", version = "=0.2.98", default-features = false }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.98" }
wasm-bindgen-backend = { path = "../backend", version = "=0.2.99", default-features = false }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.99" }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[lib]
proc-macro = true
Expand All @@ -25,7 +25,7 @@ xxx_debug_only_print_generated_code = []

[dependencies]
quote = "1.0"
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.98", default-features = false }
wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.99", default-features = false }

[dev-dependencies]
js-sys = { path = "../js-sys" }
Expand Down
4 changes: 2 additions & 2 deletions crates/multi-value-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
anyhow = "1.0"
walrus = "0.23"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.98" }
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.99" }

[dev-dependencies]
rayon = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

# 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
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mod schema_hash_approval;
// This gets changed whenever our schema changes.
// At this time versions of wasm-bindgen and wasm-bindgen-cli are required to have the exact same
// SCHEMA_VERSION in order to work together.
pub const SCHEMA_VERSION: &str = "0.2.96";
pub const SCHEMA_VERSION: &str = "0.2.98";

#[macro_export]
macro_rules! shared_api {
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/src/schema_hash_approval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// If the schema in this library has changed then:
// 1. Bump the version in `crates/shared/Cargo.toml`
// 2. Change the `SCHEMA_VERSION` in this library to this new Cargo.toml version
const APPROVED_SCHEMA_FILE_HASH: &str = "8234561557367848394";
const APPROVED_SCHEMA_FILE_HASH: &str = "12659088193118507901";

#[test]
fn schema_version() {
Expand Down
2 changes: 1 addition & 1 deletion crates/test-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.48"
version = "0.3.49"

[lib]
proc-macro = true
Expand Down
10 changes: 5 additions & 5 deletions crates/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ license = "MIT OR Apache-2.0"
name = "wasm-bindgen-test"
repository = "https://github.com/rustwasm/wasm-bindgen"
rust-version = "1.57"
version = "0.3.48"
version = "0.3.49"

[features]
default = ["std"]
std = ["wasm-bindgen/std", "js-sys/std", "wasm-bindgen-futures/std", "scoped-tls"]

[dependencies]
gg-alloc = { version = "1.0", optional = true }
js-sys = { path = '../js-sys', version = '=0.3.75', default-features = false }
js-sys = { path = '../js-sys', version = '=0.3.76', default-features = false }
scoped-tls = { version = "1.0", optional = true }
wasm-bindgen = { path = '../..', version = '=0.2.98', default-features = false }
wasm-bindgen-futures = { path = '../futures', version = '=0.4.48', default-features = false }
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.48' }
wasm-bindgen = { path = '../..', version = '=0.2.99', default-features = false }
wasm-bindgen-futures = { path = '../futures', version = '=0.4.49', default-features = false }
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.3.49' }

[target.'cfg(all(target_arch = "wasm32", wasm_bindgen_unstable_test_coverage))'.dependencies]
minicov = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/threads-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
anyhow = "1.0"
walrus = "0.23"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.98" }
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.99" }

[dev-dependencies]
rayon = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-conventions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
leb128 = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasm-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.98"
version = "0.2.99"

[dependencies]
anyhow = "1.0"
log = "0.4"
walrus = "0.23"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.98" }
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.99" }

[dev-dependencies]
tempfile = "3"
Expand Down
6 changes: 3 additions & 3 deletions crates/web-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.75"
version = "0.3.76"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -23,8 +23,8 @@ doctest = false
test = false

[dependencies]
js-sys = { path = '../js-sys', version = '=0.3.75', default-features = false }
wasm-bindgen = { path = "../..", version = "=0.2.98", default-features = false }
js-sys = { path = '../js-sys', version = '=0.3.76', default-features = false }
wasm-bindgen = { path = "../..", version = "=0.2.99", default-features = false }

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
futures = "0.3"
Expand Down
Loading