Skip to content

Commit 8f3ff15

Browse files
committed
Update rand_core and rand_jitter versions
1 parent 119c5f7 commit 8f3ff15

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

rand_core/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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+
## [0.5.1] - 2019-08-16
8+
### Added
9+
- `Error::INTERNAL_START` and `Error::CUSTOM_START` constants (#864)
10+
- `Error::raw_os_error` method (#864)
11+
- `Debug` and `Display` formatting for `getrandom` error codes without `std` (#864)
12+
### Changed
13+
- Added `#[inline]` to `Error` conversion methods (#864)
14+
715
## [0.5.0] - 2019-06-06
816
- Enable testing with Miri and fix incorrect pointer usages (#779, #780, #781, #783, #784)
917
- Rewrite `Error` type and adjust API (#800)

rand_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_jitter/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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+
## [0.2.1] - 2019-08-16
8+
### Changed
9+
- `TimerError` changed to `repr(u32)` (#864)
10+
- `TimerError` enum values all increased by `1<<30` to match new `rand_core::Error` range (#864)
11+
712
## [0.2.0] - 2019-06-06
813
- Bump `rand_core` version
914
- Support new `Error` type in `rand_core` 0.5

rand_jitter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_jitter"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)