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

Prepare v0.2.91 release (#3829) · wasm-bindgen/wasm-bindgen@fe8bc94 · GitHub

File tree Expand file treeCollapse file tree 50 files changed

+108

-106

lines changed

Filter options

Expand file treeCollapse file tree 50 files changed

+108

-106

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.91](https://github.com/rustwasm/wasm-bindgen/compare/0.2.90...0.2.91)

5 + 6 +

Released 2024-02-06

5 7 6 8

### Added

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

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

readme = "README.md"

@@ -42,15 +42,15 @@ xxx_debug_only_print_generated_code = [

42 42

]

43 43 44 44

[dependencies]

45 -

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

45 +

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

46 46

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

47 47

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

48 48

cfg-if = "1.0.0"

49 49 50 50

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

51 -

js-sys = { path = 'crates/js-sys', version = '0.3.67' }

52 -

wasm-bindgen-test = { path = 'crates/test', version = '=0.3.40' }

53 -

wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.40' }

51 +

js-sys = { path = 'crates/js-sys', version = '0.3.68' }

52 +

wasm-bindgen-test = { path = 'crates/test', version = '=0.3.41' }

53 +

wasm-bindgen-futures = { path = 'crates/futures', version = '=0.4.41' }

54 54

serde_derive = "1.0"

55 55

wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }

56 56

wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-backend"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

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

23 23

proc-macro2 = "1.0"

24 24

quote = '1.0'

25 25

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

26 -

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

26 +

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

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-cli-support"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

@@ -20,10 +20,10 @@ rustc-demangle = "0.1.13"

20 20

serde_json = "1.0"

21 21

tempfile = "3.0"

22 22

walrus = "0.20.2"

23 -

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

24 -

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

25 -

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

26 -

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

27 -

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

28 -

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

23 +

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

24 +

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

25 +

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

26 +

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

27 +

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

28 +

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

29 29

unicode-ident = "1.0.5"

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-cli"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

@@ -34,8 +34,8 @@ ureq = { version = "2.7", default-features = false, features = [

34 34

"gzip",

35 35

] }

36 36

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

37 -

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

38 -

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

37 +

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

38 +

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

39 39 40 40

[dev-dependencies]

41 41

assert_cmd = "1.0"

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-externref-xform"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

Original file line number Diff line number Diff line change

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

7 7

name = "wasm-bindgen-futures"

8 8

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

9 9

readme = "./README.md"

10 -

version = "0.4.40"

10 +

version = "0.4.41"

11 11

edition = "2018"

12 12

rust-version = "1.57"

13 13 14 14

[dependencies]

15 15

cfg-if = "1.0.0"

16 -

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

17 -

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

16 +

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

17 +

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

18 18

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

19 19 20 20

[features]

@@ -29,6 +29,6 @@ features = [

29 29

]

30 30 31 31

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

32 -

wasm-bindgen-test = { path = '../test', version = '0.3.40' }

32 +

wasm-bindgen-test = { path = '../test', version = '0.3.41' }

33 33

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

34 34

futures-lite = { version = "1.11.3", default-features = false }

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "js-sys"

3 -

version = "0.3.67"

3 +

version = "0.3.68"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

readme = "./README.md"

6 6

categories = ["wasm"]

@@ -20,9 +20,9 @@ test = false

20 20

doctest = false

21 21 22 22

[dependencies]

23 -

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

23 +

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

24 24 25 25

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

26 -

wasm-bindgen-test = { path = '../test', version = '=0.3.40' }

27 -

wasm-bindgen-futures = { path = '../futures', version = '0.4.40' }

28 -

web-sys = { path = "../web-sys", version = "0.3.67", features = ["Headers", "Response", "ResponseInit"] }

26 +

wasm-bindgen-test = { path = '../test', version = '=0.3.41' }

27 +

wasm-bindgen-futures = { path = '../futures', version = '0.4.41' }

28 +

web-sys = { path = "../web-sys", version = "0.3.68", features = ["Headers", "Response", "ResponseInit"] }

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-macro-support"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

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

21 21

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

22 22

quote = '1.0'

23 23

proc-macro2 = "1.0"

24 -

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

25 -

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

24 +

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

25 +

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

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

[package]

2 2

name = "wasm-bindgen-macro"

3 -

version = "0.2.90"

3 +

version = "0.2.91"

4 4

authors = ["The wasm-bindgen Developers"]

5 5

license = "MIT OR Apache-2.0"

6 6

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

@@ -21,11 +21,11 @@ xxx_debug_only_print_generated_code = []

21 21

strict-macro = ["wasm-bindgen-macro-support/strict-macro"]

22 22 23 23

[dependencies]

24 -

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

24 +

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

25 25

quote = "1.0"

26 26 27 27

[dev-dependencies]

28 28

trybuild = "1.0"

29 -

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

30 -

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

31 -

web-sys = { path = "../web-sys", version = "0.3.67", features = ["Worker"] }

29 +

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

30 +

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

31 +

web-sys = { path = "../web-sys", version = "0.3.68", features = ["Worker"] }

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