Skip to content

Commit d0f8ee0

Browse files
committed
Update changelog
1 parent 904fb7c commit d0f8ee0

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ You may also find the [Update Guide](UPDATING.md) useful.
6060
- All PRNGs are now portable across big- and little-endian architectures. (#209)
6161
- `Isaac64Rng::next_u32` no longer throws away half the results. (#209)
6262
- Add `IsaacRng::new_from_u64` and `Isaac64Rng::new_from_u64`. (#209)
63-
- Remove `IsaacWordRng` wrapper. (#277)
6463
- Add the HC-128 CSPRNG `Hc128Rng`. (#210)
6564
- Add `ChaChaRng::set_rounds` method. (#243)
6665
- Changes to `JitterRng` to get its size down from 2112 to 24 bytes. (#251)
@@ -71,6 +70,7 @@ You may also find the [Update Guide](UPDATING.md) useful.
7170
- Remove support for NaCl. (#225)
7271
- WASM support for `OsRng` via stdweb, behind the `stdweb` feature. (#272, #336)
7372
- Use `getrandom` on more platforms for Linux, and on Android. (#338)
73+
- Use the `SecRandomCopyBytes` interface on macOS. (#322)
7474
- On systems that do not have a syscall interface, only keep a single file descriptor open for `OsRng`. (#239)
7575
- On Unix, first try a single read from `/dev/random`, then `/dev/urandom`. (#338)
7676
- Better error handling and reporting in `OsRng` (using new error type). (#225)
@@ -90,7 +90,6 @@ You may also find the [Update Guide](UPDATING.md) useful.
9090
- Use widening multiply method for much faster integer range reduction. (#274)
9191
- `Uniform` distributions for `bool` uses `Range`. (#274)
9292
- `Uniform` distributions for `bool` uses sign test. (#274)
93-
- Add `HighPrecision01` distribution. (#320)
9493

9594

9695
## [0.4.2] - 2018-01-06

UPDATING.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,18 +226,14 @@ distribution).
226226

227227
The `Open01` and `Closed01` wrappers have been removed. `Rng::gen()` (via
228228
`Uniform`) now yields samples from `(0, 1)` for floats; i.e. the same as the old
229-
`Open01`. This is considered sufficient for most uses. If you require more
230-
precision, use the `HighPrecision01` distribution.
229+
`Open01`. This is considered sufficient for most uses.
231230

232231
#### Uniform distributions
233232

234-
Three new distributions are available:
233+
Two new distributions are available:
235234

236235
- `Uniform` produces uniformly-distributed samples for many different types,
237236
and acts as a replacement for `Rand`
238-
- `HighPrecision01` generates floating-point numbers in the range `[0, 1)`
239-
(similar to `Uniform`) but with as much precision as the floating point
240-
format can represent
241237
- `Alphanumeric` samples `char`s from the ranges `a-z A-Z 0-9`
242238

243239
##### Ranges

0 commit comments

Comments
 (0)