Skip to content

Commit d95dbd2

Browse files
committed
Prepare rand_core 0.6.0
1 parent 6682db1 commit d95dbd2

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ members = [
5151
]
5252

5353
[dependencies]
54-
rand_core = { path = "rand_core", version = "0.5.1" }
54+
rand_core = { path = "rand_core", version = "0.6.0" }
5555
log = { version = "0.4.4", optional = true }
5656
serde = { version = "1.0.103", features = ["derive"], optional = true }
5757

rand_chacha/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories = ["algorithms", "no-std"]
1515
edition = "2018"
1616

1717
[dependencies]
18-
rand_core = { path = "../rand_core", version = "0.5" }
18+
rand_core = { path = "../rand_core", version = "0.6.0" }
1919
ppv-lite86 = { version = "0.2.8", default-features = false, features = ["simd"] }
2020

2121
[features]

rand_core/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
8-
7+
## [0.6.0] - 2020-12-08
8+
### Breaking changes
99
- Bump MSRV to 1.36, various code improvements (#1011)
1010
- Update to getrandom v0.2 (#1041)
1111
- Fix: `next_u32_via_fill` and `next_u64_via_fill` now use LE as documented (#1061)
12+
13+
### Other
1214
- Reduce usage of `unsafe` (#962, #963, #1011)
1315
- Annotate feature-gates in documentation (#1019)
1416
- Document available error codes (#1061)

rand_core/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_core"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The traits and error types are also available via `rand`.
4343

4444
The current version is:
4545
```
46-
rand_core = "0.5.0"
46+
rand_core = "0.6.0"
4747
```
4848

4949
Rand libs have inter-dependencies and make use of the

rand_hc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ categories = ["algorithms", "no-std"]
1515
edition = "2018"
1616

1717
[dependencies]
18-
rand_core = { path = "../rand_core", version = "0.5" }
18+
rand_core = { path = "../rand_core", version = "0.6.0" }

rand_pcg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ edition = "2018"
1818
serde1 = ["serde"]
1919

2020
[dependencies]
21-
rand_core = { path = "../rand_core", version = "0.5" }
21+
rand_core = { path = "../rand_core", version = "0.6.0" }
2222
serde = { version = "1", features = ["derive"], optional = true }
2323

2424
[dev-dependencies]

0 commit comments

Comments
 (0)