Skip to content

Commit 491014b

Browse files
committed
Prepare rand v0.8.0 release
1 parent 98e220c commit 491014b

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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-
## [Unreleased]
11+
## [0.8.0] - 2020-12-18
1212
### Additions
1313
- impl PartialEq+Eq for StdRng, SmallRng, and StepRng (#975)
1414
- Added a `serde1` feature and added Serialize/Deserialize to `UniformInt` and `WeightedIndex` (#974)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.7.4"
3+
version = "0.8.0"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this to your `Cargo.toml`:
5151

5252
```toml
5353
[dependencies]
54-
rand = "0.7"
54+
rand = "0.8.0"
5555
```
5656

5757
To get started using Rand, see [The Book](https://rust-random.github.io/book).
@@ -68,7 +68,7 @@ Current Rand versions are:
6868
- Version 0.7 was released in June 2019, moving most non-uniform distributions
6969
to an external crate, moving `from_entropy` to `SeedableRng`, and many small
7070
changes and fixes.
71-
- The `master` branch is close to 0.8 release.
71+
- Version 0.8 was released in December 2020 with many small changes.
7272

7373
A detailed [changelog](CHANGELOG.md) is available for releases.
7474

SECURITY.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ exceptions for theoretical issues without a known exploit:
4343

4444
| Crate | Versions | Exceptions |
4545
| ----- | -------- | ---------- |
46+
| `rand` | 0.8 | |
4647
| `rand` | 0.7 | |
4748
| `rand` | 0.5, 0.6 | Jitter |
4849
| `rand` | 0.4 | Jitter, ISAAC |
49-
| `rand_core` | 0.2 - 0.5 | |
50-
| `rand_chacha` | 0.1 - 0.2 | |
51-
| `rand_hc` | 0.1 - 0.2 | |
50+
| `rand_core` | 0.2 - 0.6 | |
51+
| `rand_chacha` | 0.1 - 0.3 | |
52+
| `rand_hc` | 0.1 - 0.3 | |
5253

5354
Explanation of exceptions:
5455

rand_distr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ edition = "2018"
1616
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
1717

1818
[dependencies]
19-
rand = { path = "..", version = "0.7", default-features = false }
19+
rand = { path = "..", version = "0.8.0", default-features = false }
2020
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
2121

2222
[features]
@@ -27,6 +27,6 @@ alloc = ["rand/alloc"]
2727
[dev-dependencies]
2828
rand_pcg = { version = "0.3.0", path = "../rand_pcg" }
2929
# For inline examples
30-
rand = { path = "..", version = "0.7", default-features = false, features = ["std_rng", "std"] }
30+
rand = { path = "..", version = "0.8.0", default-features = false, features = ["std_rng", "std"] }
3131
# Histogram implementation for testing uniformity
3232
average = "0.10.3"

0 commit comments

Comments
 (0)