Skip to content

Commit b7bead9

Browse files
committed
Update changelog for 0.6
1 parent 8c75a34 commit b7bead9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,26 @@ You may also find the [Update Guide](UPDATING.md) useful.
1010

1111
## [0.6.0] - Unreleased
1212

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+
1326
### Sequences module
1427
- 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)
1533

1634
## [0.5.4] - 2018-07-11
1735
### Platform support

0 commit comments

Comments
 (0)