File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,26 @@ You may also find the [Update Guide](UPDATING.md) useful.
10
10
11
11
## [ 0.6.0] - Unreleased
12
12
13
+ ### Crate features and organisation
14
+ - The ISAAC and Xorshift RNGs have been moved to their own crates: ` rand_isaac `
15
+ and ` rand_xorshift ` . (#551 , #557 )
16
+ - ` Uniform ` supports inclusive ranges: ` Uniform::from(a..=b) ` . This is
17
+ automatically enabled for Rust >= 1.27. (#566 )
18
+ - Support for ` i128 ` and ` u128 ` is automatically enabled for Rust >= 1.26. This
19
+ renders the ` i128_support ` feature obsolete. It still exists for backwards
20
+ compatibility but does not have any effect. This breaks programs using Rand
21
+ with ` i128_support ` on nightlies older than Rust 1.26. (#571 )
22
+
23
+ ### New distributions
24
+ - Added sampling from the unit sphere and circle. (#567 )
25
+
13
26
### Sequences module
14
27
- Optimised and changed return type of the ` sample_indices ` function. (#479 )
28
+ - Added weighted sampling. (#518 )
29
+
30
+ ### Platform support
31
+ - Added support for wasm-bindgen. (#541 )
32
+ - Added basic SIMD support. (#523 )
15
33
16
34
## [ 0.5.4] - 2018-07-11
17
35
### Platform support
You can’t perform that action at this time.
0 commit comments