Changelog
*Sourced from [rand's changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md).*
> ## [0.7.2] - 2019-09-16
> ### Fixes
> - Fix dependency on `rand_core` 0.5.1 ([#890](https://github-redirect.dependabot.com/rust-random/rand/issues/890))
>
> ### Additions
> - Unit tests for value stability of distributions added ([#888](https://github-redirect.dependabot.com/rust-random/rand/issues/888))
>
> ## [0.7.1] - 2019-09-13
> ### Yanked
> This release was yanked since it depends on `rand_core::OsRng` added in 0.5.1
> but specifies a dependency on version 0.5.0 ([#890](https://github-redirect.dependabot.com/rust-random/rand/issues/890)), causing a broken builds
> when updating from `rand 0.7.0` without also updating `rand_core`.
>
> ### Fixes
> - Fix `no_std` behaviour, appropriately enable c2-chacha's `std` feature ([#844](https://github-redirect.dependabot.com/rust-random/rand/issues/844))
> - `alloc` feature in `no_std` is available since Rust 1.36 ([#856](https://github-redirect.dependabot.com/rust-random/rand/issues/856))
> - Fix or squelch issues from Clippy lints ([#840](https://github-redirect.dependabot.com/rust-random/rand/issues/840))
>
> ### Additions
> - Add a `no_std` target to CI to continously evaluate `no_std` status ([#844](https://github-redirect.dependabot.com/rust-random/rand/issues/844))
> - `WeightedIndex`: allow adjusting a sub-set of weights ([#866](https://github-redirect.dependabot.com/rust-random/rand/issues/866))
>
> ## [0.7.0] - 2019-06-28
>
> ### Fixes
> - Fix incorrect pointer usages revealed by Miri testing ([#780](https://github-redirect.dependabot.com/rust-random/rand/issues/780), [#781](https://github-redirect.dependabot.com/rust-random/rand/issues/781))
> - Fix (tiny!) bias in `Uniform` for 8- and 16-bit ints ([#809](https://github-redirect.dependabot.com/rust-random/rand/issues/809))
>
> ### Crate
> - Bumped MSRV (min supported Rust version) to 1.32.0
> - Updated to Rust Edition 2018 ([#823](https://github-redirect.dependabot.com/rust-random/rand/issues/823), [#824](https://github-redirect.dependabot.com/rust-random/rand/issues/824))
> - Removed dependence on `rand_xorshift`, `rand_isaac`, `rand_jitter` crates ([#759](https://github-redirect.dependabot.com/rust-random/rand/issues/759), [#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765))
> - Remove dependency on `winapi` ([#724](https://github-redirect.dependabot.com/rust-random/rand/issues/724))
> - Removed all `build.rs` files ([#824](https://github-redirect.dependabot.com/rust-random/rand/issues/824))
> - Removed code already deprecated in version 0.6 ([#757](https://github-redirect.dependabot.com/rust-random/rand/issues/757))
> - Removed the serde1 feature (It's still available for backwards compatibility, but it does not do anything. [#830](https://github-redirect.dependabot.com/rust-random/rand/issues/830))
> - Many documentation changes
>
> ### rand_core
> - Updated to `rand_core` 0.5.0
> - `Error` type redesigned with new API ([#800](https://github-redirect.dependabot.com/rust-random/rand/issues/800))
> - Move `from_entropy` method to `SeedableRng` and remove `FromEntropy` ([#800](https://github-redirect.dependabot.com/rust-random/rand/issues/800))
> - `SeedableRng::from_rng` is now expected to be value-stable ([#815](https://github-redirect.dependabot.com/rust-random/rand/issues/815))
>
> ### Standard RNGs
> - OS interface moved from `rand_os` to new `getrandom` crate ([#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765), [getrandom](https://github.com/rust-random/getrandom))
> - Use ChaCha for `StdRng` and `ThreadRng` ([#792](https://github-redirect.dependabot.com/rust-random/rand/issues/792))
> - Feature-gate `SmallRng` ([#792](https://github-redirect.dependabot.com/rust-random/rand/issues/792))
> - `ThreadRng` now supports `Copy` ([#758](https://github-redirect.dependabot.com/rust-random/rand/issues/758))
> - Deprecated `EntropyRng` ([#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765))
> ... (truncated)
Commits
- [`249ebfc`](https://github.com/rust-random/rand/commit/249ebfc4352d8f3e1ebcb2a884f047b31ba32981) Merge pull request [#888](https://github-redirect.dependabot.com/rust-random/rand/issues/888) from dhardy/master
- [`5ac4cbd`](https://github.com/rust-random/rand/commit/5ac4cbd38c82797dde744edfb1fb0799dfdd8022) Prepare rand 0.7.2
- [`f39915a`](https://github.com/rust-random/rand/commit/f39915a4964052b1b091ab67d8cff137a848c633) rand_distr: work around tan func issue
- [`802ba8f`](https://github.com/rust-random/rand/commit/802ba8f7f54635cdc009d906f032392dda77faa3) rand_distr: add missing value_stability tests
- [`a43d7f1`](https://github.com/rust-random/rand/commit/a43d7f1166ede87bfce92ae236bde95c486bfd9c) Fix tests
- [`2ef2e66`](https://github.com/rust-random/rand/commit/2ef2e669b600e8445bbdf38d715afd3b1f389488) Add value_stability tests for uniform
- [`096a5dd`](https://github.com/rust-random/rand/commit/096a5dd5d69fe8a505507c93ab274b3fcacef583) UniformSampler: add doc on usage of sample_single
- [`f78781a`](https://github.com/rust-random/rand/commit/f78781aa84142f95f6397431958fc60bef555ca0) Uniform: replace inner field with struct tuple
- [`856fdfb`](https://github.com/rust-random/rand/commit/856fdfb4331188e3fd91ab8b31a11df86b6122b9) Distribution: add doc of portability
- [`72af6f8`](https://github.com/rust-random/rand/commit/72af6f84f26daca5f8248be52f687fe734b2f79a) Add value_stability tests for bernoulli, int, float and other distrs
- Additional commits viewable in [compare view](https://github.com/rust-random/rand/compare/0.5.5...0.7.2)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Bumps rand from 0.5.5 to 0.7.2.
Changelog
*Sourced from [rand's changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md).* > ## [0.7.2] - 2019-09-16 > ### Fixes > - Fix dependency on `rand_core` 0.5.1 ([#890](https://github-redirect.dependabot.com/rust-random/rand/issues/890)) > > ### Additions > - Unit tests for value stability of distributions added ([#888](https://github-redirect.dependabot.com/rust-random/rand/issues/888)) > > ## [0.7.1] - 2019-09-13 > ### Yanked > This release was yanked since it depends on `rand_core::OsRng` added in 0.5.1 > but specifies a dependency on version 0.5.0 ([#890](https://github-redirect.dependabot.com/rust-random/rand/issues/890)), causing a broken builds > when updating from `rand 0.7.0` without also updating `rand_core`. > > ### Fixes > - Fix `no_std` behaviour, appropriately enable c2-chacha's `std` feature ([#844](https://github-redirect.dependabot.com/rust-random/rand/issues/844)) > - `alloc` feature in `no_std` is available since Rust 1.36 ([#856](https://github-redirect.dependabot.com/rust-random/rand/issues/856)) > - Fix or squelch issues from Clippy lints ([#840](https://github-redirect.dependabot.com/rust-random/rand/issues/840)) > > ### Additions > - Add a `no_std` target to CI to continously evaluate `no_std` status ([#844](https://github-redirect.dependabot.com/rust-random/rand/issues/844)) > - `WeightedIndex`: allow adjusting a sub-set of weights ([#866](https://github-redirect.dependabot.com/rust-random/rand/issues/866)) > > ## [0.7.0] - 2019-06-28 > > ### Fixes > - Fix incorrect pointer usages revealed by Miri testing ([#780](https://github-redirect.dependabot.com/rust-random/rand/issues/780), [#781](https://github-redirect.dependabot.com/rust-random/rand/issues/781)) > - Fix (tiny!) bias in `Uniform` for 8- and 16-bit ints ([#809](https://github-redirect.dependabot.com/rust-random/rand/issues/809)) > > ### Crate > - Bumped MSRV (min supported Rust version) to 1.32.0 > - Updated to Rust Edition 2018 ([#823](https://github-redirect.dependabot.com/rust-random/rand/issues/823), [#824](https://github-redirect.dependabot.com/rust-random/rand/issues/824)) > - Removed dependence on `rand_xorshift`, `rand_isaac`, `rand_jitter` crates ([#759](https://github-redirect.dependabot.com/rust-random/rand/issues/759), [#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765)) > - Remove dependency on `winapi` ([#724](https://github-redirect.dependabot.com/rust-random/rand/issues/724)) > - Removed all `build.rs` files ([#824](https://github-redirect.dependabot.com/rust-random/rand/issues/824)) > - Removed code already deprecated in version 0.6 ([#757](https://github-redirect.dependabot.com/rust-random/rand/issues/757)) > - Removed the serde1 feature (It's still available for backwards compatibility, but it does not do anything. [#830](https://github-redirect.dependabot.com/rust-random/rand/issues/830)) > - Many documentation changes > > ### rand_core > - Updated to `rand_core` 0.5.0 > - `Error` type redesigned with new API ([#800](https://github-redirect.dependabot.com/rust-random/rand/issues/800)) > - Move `from_entropy` method to `SeedableRng` and remove `FromEntropy` ([#800](https://github-redirect.dependabot.com/rust-random/rand/issues/800)) > - `SeedableRng::from_rng` is now expected to be value-stable ([#815](https://github-redirect.dependabot.com/rust-random/rand/issues/815)) > > ### Standard RNGs > - OS interface moved from `rand_os` to new `getrandom` crate ([#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765), [getrandom](https://github.com/rust-random/getrandom)) > - Use ChaCha for `StdRng` and `ThreadRng` ([#792](https://github-redirect.dependabot.com/rust-random/rand/issues/792)) > - Feature-gate `SmallRng` ([#792](https://github-redirect.dependabot.com/rust-random/rand/issues/792)) > - `ThreadRng` now supports `Copy` ([#758](https://github-redirect.dependabot.com/rust-random/rand/issues/758)) > - Deprecated `EntropyRng` ([#765](https://github-redirect.dependabot.com/rust-random/rand/issues/765)) > ... (truncated)Commits
- [`249ebfc`](https://github.com/rust-random/rand/commit/249ebfc4352d8f3e1ebcb2a884f047b31ba32981) Merge pull request [#888](https://github-redirect.dependabot.com/rust-random/rand/issues/888) from dhardy/master - [`5ac4cbd`](https://github.com/rust-random/rand/commit/5ac4cbd38c82797dde744edfb1fb0799dfdd8022) Prepare rand 0.7.2 - [`f39915a`](https://github.com/rust-random/rand/commit/f39915a4964052b1b091ab67d8cff137a848c633) rand_distr: work around tan func issue - [`802ba8f`](https://github.com/rust-random/rand/commit/802ba8f7f54635cdc009d906f032392dda77faa3) rand_distr: add missing value_stability tests - [`a43d7f1`](https://github.com/rust-random/rand/commit/a43d7f1166ede87bfce92ae236bde95c486bfd9c) Fix tests - [`2ef2e66`](https://github.com/rust-random/rand/commit/2ef2e669b600e8445bbdf38d715afd3b1f389488) Add value_stability tests for uniform - [`096a5dd`](https://github.com/rust-random/rand/commit/096a5dd5d69fe8a505507c93ab274b3fcacef583) UniformSampler: add doc on usage of sample_single - [`f78781a`](https://github.com/rust-random/rand/commit/f78781aa84142f95f6397431958fc60bef555ca0) Uniform: replace inner field with struct tuple - [`856fdfb`](https://github.com/rust-random/rand/commit/856fdfb4331188e3fd91ab8b31a11df86b6122b9) Distribution: add doc of portability - [`72af6f8`](https://github.com/rust-random/rand/commit/72af6f84f26daca5f8248be52f687fe734b2f79a) Add value_stability tests for bernoulli, int, float and other distrs - Additional commits viewable in [compare view](https://github.com/rust-random/rand/compare/0.5.5...0.7.2)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)