]> git.proxmox.com Git - rustc.git/blame - vendor/rand_core/CHANGELOG.md
New upstream version 1.38.0+dfsg1
[rustc.git] / vendor / rand_core / CHANGELOG.md
CommitLineData
416331ca
XL
1# Changelog
2All notable changes to this project will be documented in this file.
3
4The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7## [0.5.0] - 2019-06-06
8- Enable testing with Miri and fix incorrect pointer usages (#779, #780, #781, #783, #784)
9- Rewrite `Error` type and adjust API (#800)
10- Adjust usage of `#[inline]` for `BlockRng` and `BlockRng64`
11
12## [0.4.0] - 2019-01-24
13- Disable the `std` feature by default (#702)
14
15## [0.3.0] - 2018-09-24
16- Add `SeedableRng::seed_from_u64` for convenient seeding. (#537)
17
18## [0.2.1] - 2018-06-08
19- References to a `CryptoRng` now also implement `CryptoRng`. (#470)
20
21## [0.2.0] - 2018-05-21
22- Enable the `std` feature by default. (#409)
23- Remove `BlockRng{64}::inner` and `BlockRng::inner_mut`; instead making `core` public
24- Add `BlockRng{64}::index` and `BlockRng{64}::generate_and_set`. (#374, #419)
25- Change `BlockRngCore::Results` bound to also require `AsMut<[Self::Item]>`. (#419)
26- Implement `std::io::Read` for RngCore. (#434)
27
28## [0.1.0] - 2018-04-17
29(Split out of the Rand crate, changes here are relative to rand 0.4.2)
30- `RngCore` and `SeedableRng` are now part of `rand_core`. (#288)
31- Add modules to help implementing RNGs `impl` and `le`. (#209, #228)
32- Add `Error` and `ErrorKind`. (#225)
33- Add `CryptoRng` marker trait. (#273)
34- Add `BlockRngCore` trait. (#281)
35- Add `BlockRng` and `BlockRng64` wrappers to help implementations. (#281, #325)
36- Revise the `SeedableRng` trait. (#233)
37- Remove default implementations for `RngCore::next_u64` and `RngCore::fill_bytes`. (#288)
38- Add `RngCore::try_fill_bytes`. (#225)
39
40## [0.0.1] - 2017-09-14 (yanked)
41Experimental version as part of the rand crate refactor.