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/bf9807c5a0c593cf03a5f648b93a738e74fce1d0 below:

Prepare v0.2.93 release (#4072) · wasm-bindgen/wasm-bindgen@bf9807c · GitHub

File tree Expand file treeCollapse file tree 19 files changed

+48

-44

lines changed

Filter options

Expand file treeCollapse file tree 19 files changed

+48

-44

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.93](https://github.com/rustwasm/wasm-bindgen/compare/0.2.92...0.2.93)

5 + 6 +

Released 2024-08-13

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.92"

16 +

version = "0.2.93"

17 17 18 18

[package.metadata.docs.rs]

19 19

features = ["serde-serialize"]

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

45 45

once_cell = "1.12"

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.92" }

48 +

wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.93" }

49 49 50 50

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

51 51

js-sys = { path = 'crates/js-sys' }

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.92"

14 +

version = "0.2.93"

15 15 16 16

[features]

17 17

extra-traits = ["syn/extra-traits"]

@@ -24,4 +24,4 @@ once_cell = "1.12"

24 24

proc-macro2 = "1.0"

25 25

quote = '1.0'

26 26

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

27 -

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

27 +

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

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.92"

14 +

version = "0.2.93"

15 15 16 16

[dependencies]

17 17

anyhow = "1.0"

@@ -22,9 +22,9 @@ serde_json = "1.0"

22 22

tempfile = "3.0"

23 23

unicode-ident = "1.0.5"

24 24

walrus = "0.21"

25 -

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

26 -

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

27 -

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

28 -

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

29 -

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

30 -

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

25 +

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

26 +

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

27 +

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

28 +

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

29 +

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

30 +

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

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.92"

17 +

version = "0.2.93"

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.21", features = ['parallel'] }

35 -

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

36 -

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

35 +

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

36 +

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

37 37 38 38

[dev-dependencies]

39 39

assert_cmd = "2"

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.92"

14 +

version = "0.2.93"

15 15 16 16

[dependencies]

17 17

anyhow = "1.0"

18 18

walrus = "0.21"

19 -

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

19 +

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

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.42"

13 +

version = "0.4.43"

14 14 15 15

[package.metadata.docs.rs]

16 16

all-features = true

@@ -19,8 +19,8 @@ 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.69' }

23 -

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

22 +

js-sys = { path = "../js-sys", version = '0.3.70' }

23 +

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

24 24 25 25

[features]

26 26

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

Original file line number Diff line number Diff line change

@@ -14,14 +14,14 @@ 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.69"

17 +

version = "0.3.70"

18 18 19 19

[lib]

20 20

doctest = false

21 21

test = false

22 22 23 23

[dependencies]

24 -

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

24 +

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

25 25 26 26

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

27 27

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.92"

14 +

version = "0.2.93"

15 15 16 16

[features]

17 17

extra-traits = ["syn/extra-traits"]

@@ -22,5 +22,5 @@ strict-macro = []

22 22

proc-macro2 = "1.0"

23 23

quote = '1.0'

24 24

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

25 -

wasm-bindgen-backend = { path = "../backend", version = "=0.2.92" }

26 -

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

25 +

wasm-bindgen-backend = { path = "../backend", version = "=0.2.93" }

26 +

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

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"

12 12

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

13 13

rust-version = "1.57"

14 -

version = "0.2.92"

14 +

version = "0.2.93"

15 15 16 16

[lib]

17 17

proc-macro = true

@@ -23,7 +23,7 @@ xxx_debug_only_print_generated_code = []

23 23 24 24

[dependencies]

25 25

quote = "1.0"

26 -

wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.92" }

26 +

wasm-bindgen-macro-support = { path = "../macro-support", version = "=0.2.93" }

27 27 28 28

[dev-dependencies]

29 29

js-sys = { path = "../js-sys" }

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