A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/wasm-bindgen/wasm-bindgen/commit/7ad47669b23849e43f048cd75fdfb71cc01db2e8 below:

Prepare v0.2.96 release (#4298) · wasm-bindgen/wasm-bindgen@7ad4766 · GitHub

File tree Expand file treeCollapse file tree 21 files changed

+57

-55

lines changed

Filter options

Expand file treeCollapse file tree 21 files changed

+57

-55

lines changed Original file line number Diff line number Diff line change

@@ -1,7 +1,9 @@

1 1

# `wasm-bindgen` Change Log

2 2

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

3 3 4 -

## Unreleased

4 +

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

5 + 6 +

Released 2024-11-29

5 7 6 8

### Added

7 9 Original file line number Diff line number Diff line change

@@ -13,7 +13,7 @@ name = "wasm-bindgen"

13 13

readme = "README.md"

14 14

repository = "https://github.com/rustwasm/wasm-bindgen"

15 15

rust-version = "1.57"

16 -

version = "0.2.95"

16 +

version = "0.2.96"

17 17 18 18

[package.metadata.docs.rs]

19 19

features = ["serde-serialize"]

@@ -45,15 +45,15 @@ cfg-if = "1.0.0"

45 45

once_cell = { version = "1.12", default-features = false }

46 46

serde = { version = "1.0", optional = true }

47 47

serde_json = { version = "1.0", optional = true }

48 -

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.95", default-features = false }

48 +

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.96", default-features = false }

49 49 50 50

[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none"), target_feature = "atomics"))'.dependencies]

51 -

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.95", default-features = false, features = [

51 +

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.96", default-features = false, features = [

52 52

"atomics",

53 53

] }

54 54 55 55

[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none"), wasm_bindgen_unstable_test_coverage))'.dependencies]

56 -

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.95", default-features = false, features = [

56 +

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.96", default-features = false, features = [

57 57

"coverage",

58 58

] }

59 59 Original file line number Diff line number Diff line change

@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"

11 11

name = "wasm-bindgen-backend"

12 12

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"

13 13

rust-version = "1.57"

14 -

version = "0.2.95"

14 +

version = "0.2.96"

15 15 16 16

[features]

17 17

atomics = []

@@ -28,7 +28,7 @@ once_cell = "1.12"

28 28

proc-macro2 = "1.0"

29 29

quote = '1.0'

30 30

syn = { version = '2.0', features = ['full'] }

31 -

wasm-bindgen-shared = { path = "../shared", version = "=0.2.95" }

31 +

wasm-bindgen-shared = { path = "../shared", version = "=0.2.96" }

32 32 33 33

[lints]

34 34

workspace = true

Original file line number Diff line number Diff line change

@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"

11 11

name = "wasm-bindgen-cli-support"

12 12

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"

13 13

rust-version = "1.76"

14 -

version = "0.2.95"

14 +

version = "0.2.96"

15 15 16 16

[dependencies]

17 17

anyhow = "1.0"

@@ -23,12 +23,12 @@ serde_json = "1.0"

23 23

tempfile = "3.0"

24 24

unicode-ident = "1.0.5"

25 25

walrus = "0.23"

26 -

wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.95' }

27 -

wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.95' }

28 -

wasm-bindgen-shared = { path = "../shared", version = '=0.2.95' }

29 -

wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.95' }

30 -

wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.95' }

31 -

wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.95' }

26 +

wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.96' }

27 +

wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.96' }

28 +

wasm-bindgen-shared = { path = "../shared", version = '=0.2.96' }

29 +

wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.96' }

30 +

wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.96' }

31 +

wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.96' }

32 32 33 33

[lints]

34 34

workspace = true

Original file line number Diff line number Diff line change

@@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"

14 14

name = "wasm-bindgen-cli"

15 15

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"

16 16

rust-version = "1.76"

17 -

version = "0.2.95"

17 +

version = "0.2.96"

18 18 19 19

[package.metadata.binstall]

20 20

bin-dir = "wasm-bindgen-{ version }-{ target }/{ bin }{ binary-ext }"

@@ -32,8 +32,8 @@ serde_derive = "1.0"

32 32

serde_json = "1.0"

33 33

ureq = { version = "2.7", default-features = false, features = ["brotli", "gzip"] }

34 34

walrus = { version = "0.23", features = ['parallel'] }

35 -

wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.95" }

36 -

wasm-bindgen-shared = { path = "../shared", version = "=0.2.95" }

35 +

wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.96" }

36 +

wasm-bindgen-shared = { path = "../shared", version = "=0.2.96" }

37 37 38 38

[dev-dependencies]

39 39

assert_cmd = "2"

Original file line number Diff line number Diff line change

@@ -188,7 +188,7 @@ export function get_media_source() {

188 188 189 189

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

190 190 191 -

export function __wbg_new_561a91ce53f10a66() { return handleError(function (arg0, arg1) {

191 +

export function __wbg_new_dce808fb3f528314() { return handleError(function (arg0, arg1) {

192 192

const ret = new URL(getStringFromWasm0(arg0, arg1));

193 193

return ret;

194 194

}, arguments) };

Original file line number Diff line number Diff line change

@@ -11,12 +11,12 @@ license = "MIT OR Apache-2.0"

11 11

name = "wasm-bindgen-externref-xform"

12 12

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform"

13 13

rust-version = "1.76"

14 -

version = "0.2.95"

14 +

version = "0.2.96"

15 15 16 16

[dependencies]

17 17

anyhow = "1.0"

18 18

walrus = "0.23"

19 -

wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.95" }

19 +

wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.96" }

20 20 21 21

[dev-dependencies]

22 22

rayon = "1.0"

Original file line number Diff line number Diff line change

@@ -10,7 +10,7 @@ name = "wasm-bindgen-futures"

10 10

readme = "./README.md"

11 11

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures"

12 12

rust-version = "1.57"

13 -

version = "0.4.45"

13 +

version = "0.4.46"

14 14 15 15

[package.metadata.docs.rs]

16 16

all-features = true

@@ -19,20 +19,20 @@ rustdoc-args = ["--cfg", "docsrs"]

19 19

[dependencies]

20 20

cfg-if = "1.0.0"

21 21

futures-core = { version = '0.3.8', default-features = false, optional = true }

22 -

js-sys = { path = "../js-sys", version = '=0.3.72', default-features = false }

22 +

js-sys = { path = "../js-sys", version = '=0.3.73', default-features = false }

23 23

once_cell = { version = "1.12", default-features = false }

24 -

wasm-bindgen = { path = "../..", version = '=0.2.95', default-features = false }

24 +

wasm-bindgen = { path = "../..", version = '=0.2.96', default-features = false }

25 25 26 26

[features]

27 27

default = ["std"]

28 28

futures-core-03-stream = ['futures-core']

29 29

std = ["wasm-bindgen/std", "js-sys/std", "web-sys/std", "once_cell/std"]

30 30 31 -

[target.'cfg(target_feature = "atomics")'.dependencies.web-sys]

32 -

default-features = false

33 -

features = ["MessageEvent", "Worker"]

34 -

path = "../web-sys"

35 -

version = "=0.3.72"

31 +

[target.'cfg(target_feature = "atomics")'.dependencies]

32 +

web-sys = { path = "../web-sys", version = "=0.3.73", default-features = false, features = [

33 +

"MessageEvent",

34 +

"Worker",

35 +

] }

36 36 37 37

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]

38 38

futures-channel-preview = { version = "0.3.0-alpha.18" }

Original file line number Diff line number Diff line change

@@ -14,7 +14,7 @@ name = "js-sys"

14 14

readme = "./README.md"

15 15

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"

16 16

rust-version = "1.57"

17 -

version = "0.3.72"

17 +

version = "0.3.73"

18 18 19 19

[lib]

20 20

doctest = false

@@ -25,7 +25,7 @@ default = ["std"]

25 25

std = ["wasm-bindgen/std"]

26 26 27 27

[dependencies]

28 -

wasm-bindgen = { path = "../..", version = "=0.2.95", default-features = false }

28 +

wasm-bindgen = { path = "../..", version = "=0.2.96", default-features = false }

29 29 30 30

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]

31 31

wasm-bindgen-futures = { path = '../futures' }

Original file line number Diff line number Diff line change

@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"

11 11

name = "wasm-bindgen-macro-support"

12 12

repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support"

13 13

rust-version = "1.57"

14 -

version = "0.2.95"

14 +

version = "0.2.96"

15 15 16 16

[features]

17 17

atomics = ["wasm-bindgen-backend/atomics"]

@@ -26,8 +26,8 @@ strict-macro = []

26 26

proc-macro2 = "1.0"

27 27

quote = '1.0'

28 28

syn = { version = '2.0', features = ['visit', 'visit-mut', 'full'] }

29 -

wasm-bindgen-backend = { path = "../backend", version = "=0.2.95", default-features = false }

30 -

wasm-bindgen-shared = { path = "../shared", version = "=0.2.95" }

29 +

wasm-bindgen-backend = { path = "../backend", version = "=0.2.96", default-features = false }

30 +

wasm-bindgen-shared = { path = "../shared", version = "=0.2.96" }

31 31 32 32

[lints]

33 33

workspace = true

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4