You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ Breaking Changes
8
8
----------------
9
9
10
10
*`stdweb` support is removed. The feature flag `stdweb` is also removed. Use `wasm-bindgen` instead.
11
+
*[`web-time`](https://crates.io/crates/web-time) is used for WASM targets instead of [`instant`](https://crates.io/crates/instant), which is no longer maintained.
11
12
12
13
Bug fixes
13
14
---------
@@ -23,6 +24,11 @@ Enhancements
23
24
* The methods `sort_desc`, `order`, `order_by` and `order_desc` are added to arrays.
24
25
* An exception is now thrown when attempting to use `sort` on an array containing unsupported element types.
25
26
27
+
New features
28
+
------------
29
+
30
+
*`AST::new_from_module` is added to create an `AST` from a shared `Module`.
Copy file name to clipboardExpand all lines: README.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,8 @@ Targets and builds
32
32
Versions
33
33
--------
34
34
35
-
The [`ahash`](https://crates.io/crates/ahash) crate that Rhai depends on has a breaking change since version `0.8.12` which bumps [`getrandom`](https://crates.io/crates/getrandom) to version `0.3`, braking certain `no-std` and WASM builds.
36
-
37
-
Version [`1.23.5`](https://crates.io/crates/rhai/1.23.5): Use this version when building for `no-std` or WASM.
38
-
39
-
Version [`1.23.6`](https://crates.io/crates/rhai/1.23.6): This is the main version for `std` builds.
35
+
As of this version, [`stdweb`](https://crates.io/crates/stdweb) is no longer supported for WASM builds
36
+
because of changes to [`getrandom`](https://crates.io/crates/getrandom) starting from version 0.3.
0 commit comments