File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,19 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
9
9
You may also find the [Update Guide](UPDATING.md) useful.
10
10
11
11
12
+ ## [0.5.1] - Unreleased
13
+
14
+ ### Platform support and `OsRng`
15
+ - Remove blanket Unix implementation. (#484)
16
+ - Remove Wasm unimplemented stub. (#484)
17
+ - Dragonfly BSD: read from `/dev/random`. (#484)
18
+ - Bitrig: use `getentropy` like OpenBSD. (#484)
19
+ - Solaris: (untested) use `getrandom` if available, otherwise `/dev/random`. (#484)
20
+ - Emscripten, `stdweb`: split the read up in chunks. (#484)
21
+ - Emscripten, Haiku: don't do an extra blocking read from `/dev/random`. (#484)
22
+ - Linux, NetBSD, Solaris: read in blocking mode on first use in `fill_bytes`. (#484)
23
+ - Fuchsia, CloudABI: fix compilation (broken in Rand 0.5). (#484)
24
+
12
25
## [0.5.0] - 2018-05-21
13
26
14
27
### Crate features and organisation
Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ optional features are available:
116
116
- `log` enables some logging via the `log` crate.
117
117
- `nightly` enables all unstable features (`i128_support`).
118
118
- `serde1` enables serialization for some types, via Serde version 1.
119
- - `stdweb` enables support for `OsRng` on WASM via stdweb.
119
+ - `stdweb` enables support for `OsRng` on `wasm-unknown-unknown` via `stdweb`
120
+ combined with `cargo-web`.
120
121
121
122
`no_std` mode is activated by setting `default-features = false`; this removes
122
123
functionality depending on `std`:
You can’t perform that action at this time.
0 commit comments