Prepare rand_core 0.6.0
This commit is contained in:
parent
6682db1d4d
commit
d95dbd2f93
@ -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 }
|
||||
|
||||
|
@ -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]
|
||||
|
@ -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)
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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" }
|
||||
|
@ -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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user