Skip to content

Commit 8ae5b43

Browse files
committed
Update changelog
1 parent f824d91 commit 8ae5b43

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
99
You may also find the [Update Guide](UPDATING.md) useful.
1010

1111

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+
1225
## [0.5.0] - 2018-05-21
1326

1427
### Crate features and organisation

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ optional features are available:
116116
- `log` enables some logging via the `log` crate.
117117
- `nightly` enables all unstable features (`i128_support`).
118118
- `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`.
120121

121122
`no_std` mode is activated by setting `default-features = false`; this removes
122123
functionality depending on `std`:

0 commit comments

Comments
 (0)