Skip to content

Commit 5ac4cbd

Browse files
committed
Prepare rand 0.7.2
1 parent f39915a commit 5ac4cbd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88

99
You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
1010

11+
## [0.7.2] - 2019-09-16
12+
### Fixes
13+
- Fix dependency on `rand_core` 0.5.1 (#890)
14+
15+
### Additions
16+
- Unit tests for value stability of distributions added (#888)
17+
1118
## [0.7.1] - 2019-09-13
1219
### Fixes
1320
- Fix `no_std` behaviour, appropriately enable c2-chacha's `std` feature (#844)

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -56,7 +56,7 @@ members = [
5656
]
5757

5858
[dependencies]
59-
rand_core = { path = "rand_core", version = "0.5" }
59+
rand_core = { path = "rand_core", version = "0.5.1" }
6060
rand_pcg = { path = "rand_pcg", version = "0.2", optional = true }
6161
# Do not depend on 'getrandom_package' directly; use the 'getrandom' feature!
6262
# This is a dependency because: we forward wasm feature flags

0 commit comments

Comments
 (0)