Prepare rand_core 0.6.0

This commit is contained in:
Diggory Hardy 2020-12-07 11:09:20 +00:00
parent 6682db1d4d
commit d95dbd2f93
7 changed files with 10 additions and 8 deletions

View File

@ -51,7 +51,7 @@ members = [
]
[dependencies]
rand_core = { path = "rand_core", version = "0.5.1" }
rand_core = { path = "rand_core", version = "0.6.0" }
log = { version = "0.4.4", optional = true }
serde = { version = "1.0.103", features = ["derive"], optional = true }

View File

@ -15,7 +15,7 @@ categories = ["algorithms", "no-std"]
edition = "2018"
[dependencies]
rand_core = { path = "../rand_core", version = "0.5" }
rand_core = { path = "../rand_core", version = "0.6.0" }
ppv-lite86 = { version = "0.2.8", default-features = false, features = ["simd"] }
[features]

View File

@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.6.0] - 2020-12-08
### Breaking changes
- Bump MSRV to 1.36, various code improvements (#1011)
- Update to getrandom v0.2 (#1041)
- Fix: `next_u32_via_fill` and `next_u64_via_fill` now use LE as documented (#1061)
### Other
- Reduce usage of `unsafe` (#962, #963, #1011)
- Annotate feature-gates in documentation (#1019)
- Document available error codes (#1061)

View File

@ -1,6 +1,6 @@
[package]
name = "rand_core"
version = "0.5.1"
version = "0.6.0"
authors = ["The Rand Project Developers", "The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"

View File

@ -43,7 +43,7 @@ The traits and error types are also available via `rand`.
The current version is:
```
rand_core = "0.5.0"
rand_core = "0.6.0"
```
Rand libs have inter-dependencies and make use of the

View File

@ -15,4 +15,4 @@ categories = ["algorithms", "no-std"]
edition = "2018"
[dependencies]
rand_core = { path = "../rand_core", version = "0.5" }
rand_core = { path = "../rand_core", version = "0.6.0" }

View File

@ -18,7 +18,7 @@ edition = "2018"
serde1 = ["serde"]
[dependencies]
rand_core = { path = "../rand_core", version = "0.5" }
rand_core = { path = "../rand_core", version = "0.6.0" }
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]