Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
A separate changelog is kept for rand_core.
You may also find the Upgrade Guide useful.
[0.6.1] - 2018-11-22
- Support sampling
Durationalso forno_std(only since Rust 1.25) (#649) - Disable default features of
libc(#647)
[0.6.0] - 2018-11-14
Project organisation
- Rand has moved from rust-lang-nursery to rust-random! (#578)
- Created The Rust Random Book (source)
- Update copyright and licence notices (#591, #611)
- Migrate policy documentation from the wiki (#544)
Platforms
- Add fork protection on Unix (#466)
- Added support for wasm-bindgen. (#541, #559, #562, #600)
- Enable
OsRngfor powerpc64, sparc and sparc64 (#609) - Use
syscallfromlibcon Linux instead of redefining it (#629)
RNGs
- Switch
SmallRngto use PCG (#623) - Implement
Pcg32andPcg64Mcggenerators (#632) - Move ISAAC RNGs to a dedicated crate (#551)
- Move Xorshift RNG to its own crate (#557)
- Move ChaCha and HC128 RNGs to dedicated crates (#607, #636)
- Remove usage of
RcfromThreadRng(#615)
Sampling and distributions
- Implement
Rng.gen_ratio()andBernoulli::new_ratio()(#491) - Make
Uniformstrictly respectf32/f64high/low bounds (#477) - Allow
gen_rangeandUniformto work on non-Copytypes (#506) Uniformsupports inclusive ranges:Uniform::from(a..=b). This is automatically enabled for Rust >= 1.27. (#566)- Implement
TrustedLenandFusedIteratorforDistIter(#620)
New distributions
- Add the
Dirichletdistribution (#485) - Added sampling from the unit sphere and circle. (#567)
- Implement the triangular distribution (#575)
- Implement the Weibull distribution (#576)
- Implement the Beta distribution (#574)
Optimisations
- Optimise
Bernoulli::new(#500) - Optimise
charsampling (#519) - Optimise sampling of
std::time::Duration(#583)
Sequences
- Redesign the
seqmodule (#483, #515) - Add
WeightedIndexandchoose_weighted(#518, #547) - Optimised and changed return type of the
sample_indicesfunction. (#479) - Use
Iterator::size_hint()to speed upIteratorRandom::choose(#593)
SIMD
- Support for generating SIMD types (#523, #542, #561, #630)
Other
- Revise CI scripts (#632, #635)
- Remove functionality already deprecated in 0.5 (#499)
- Support for
i128andu128is automatically enabled for Rust >= 1.26. This renders thei128_supportfeature obsolete. It still exists for backwards compatibility but does not have any effect. This breaks programs using Rand withi128_supporton nightlies older than Rust 1.26. (#571)
[0.5.5] - 2018-08-07
Documentation
- Fix links in documentation (#582)
[0.5.4] - 2018-07-11
Platform support
- Make
OsRngwork via WASM/stdweb for WebWorkers
[0.5.3] - 2018-06-26
Platform support
- OpenBSD, Bitrig: fix compilation (broken in 0.5.1) (#530)
[0.5.2] - 2018-06-18
Platform support
- Hide
OsRngandJitterRngon unsupported platforms (#512; fixes #503).
[0.5.1] - 2018-06-08
New distributions
- Added Cauchy distribution. (#474, #486)
- Added Pareto distribution. (#495)
Platform support and OsRng
- Remove blanket Unix implementation. (#484)
- Remove Wasm unimplemented stub. (#484)
- Dragonfly BSD: read from
/dev/random. (#484) - Bitrig: use
getentropylike OpenBSD. (#484) - Solaris: (untested) use
getrandomif available, otherwise/dev/random. (#484) - Emscripten,
stdweb: split the read up in chunks. (#484) - Emscripten, Haiku: don't do an extra blocking read from
/dev/random. (#484) - Linux, NetBSD, Solaris: read in blocking mode on first use in
fill_bytes. (#484) - Fuchsia, CloudABI: fix compilation (broken in Rand 0.5). (#484)
[0.5.0] - 2018-05-21
Crate features and organisation
- Minimum Rust version update: 1.22.0. (#239)
- Create a separate
rand_corecrate. (#288) - Deprecate
rand_derive. (#256) - Add
prelude(and module reorganisation). (#435) - Add
logfeature. Logging is now available inJitterRng,OsRng,EntropyRngandReseedingRng. (#246) - Add
serde1feature for some PRNGs. (#189) stdwebfeature forOsRngsupport on WASM via stdweb. (#272, #336)
Rng trait
- Split
RnginRngCoreandRngextension trait.next_u32,next_u64andfill_bytesare now part ofRngCore. (#265) - Add
Rng::sample. (#256) - Deprecate
Rng::gen_weighted_bool. (#308) - Add
Rng::gen_bool. (#308) - Remove
Rng::next_f32andRng::next_f64. (#273) - Add optimized
Rng::fillandRng::try_fillmethods. (#247) - Deprecate
Rng::gen_iter. (#286) - Deprecate
Rng::gen_ascii_chars. (#279)
rand_core crate
randnow depends on newrand_corecrate (#288)RngCoreandSeedableRngare now part ofrand_core. (#288)- Add modules to help implementing RNGs
implandle. (#209, #228) - Add
ErrorandErrorKind. (#225) - Add
CryptoRngmarker trait. (#273) - Add
BlockRngCoretrait. (#281) - Add
BlockRngandBlockRng64wrappers to help implementations. (#281, #325) - Revise the
SeedableRngtrait. (#233) - Remove default implementations for
RngCore::next_u64andRngCore::fill_bytes. (#288) - Add
RngCore::try_fill_bytes. (#225)
Other traits and types
- Add
FromEntropytrait. (#233, #375) - Add
SmallRngwrapper. (#296) - Rewrite
ReseedingRngto only work withBlockRngCore(substantial performance improvement). (#281) - Deprecate
weak_rng. UseSmallRnginstead. (#296) - Deprecate
AsciiGenerator. (#279)
Random number generators
- Switch
StdRngandthread_rngto HC-128. (#277) StdRngmust now be created withfrom_entropyinstead ofnew- Change
thread_rngreseeding threshold to 32 MiB. (#277) - PRNGs no longer implement
Copy. (#209) Debugimplementations no longer show internals. (#209)- Implement
CloneforReseedingRng,JitterRng, OsRng`. (#383, #384) - Implement serialization for
XorShiftRng,IsaacRngandIsaac64Rngunder theserde1feature. (#189) - Implement
BlockRngCoreforChaChaCoreandHc128Core. (#281) - All PRNGs are now portable across big- and little-endian architectures. (#209)
Isaac64Rng::next_u32no longer throws away half the results. (#209)- Add
IsaacRng::new_from_u64andIsaac64Rng::new_from_u64. (#209) - Add the HC-128 CSPRNG
Hc128Rng. (#210) - Change ChaCha20 to have 64-bit counter and 64-bit stream. (#349)
- Changes to
JitterRngto get its size down from 2112 to 24 bytes. (#251) - Various performance improvements to all PRNGs.
Platform support and OsRng
- Add support for CloudABI. (#224)
- Remove support for NaCl. (#225)
- WASM support for
OsRngvia stdweb, behind thestdwebfeature. (#272, #336) - Use
getrandomon more platforms for Linux, and on Android. (#338) - Use the
SecRandomCopyBytesinterface on macOS. (#322) - On systems that do not have a syscall interface, only keep a single file descriptor open for
OsRng. (#239) - On Unix, first try a single read from
/dev/random, then/dev/urandom. (#338) - Better error handling and reporting in
OsRng(using new error type). (#225) OsRngnow uses non-blocking when available. (#225)- Add
EntropyRng, which providesOsRng, but hasJitterRngas a fallback. (#235)
Distributions
- New
Distributiontrait. (#256) - Add
Distribution::sample_iterandRng::::sample_iter. (#361) - Deprecate
Rand,SampleandIndependentSampletraits. (#256) - Add a
Standarddistribution (replaces mostRandimplementations). (#256) - Add
BinomialandPoissondistributions. (#96) - Add
Bernoullidsitribution. (#411) - Add
Alphanumericdistribution. (#279) - Remove
Closed01distribution, addOpenClosed01. (#274, #420) - Rework
Rangetype, making it possible to implement it for user types. (#274) - Rename
RangetoUniform. (#395) - Add
Uniform::new_inclusivefor inclusive ranges. (#274) - Use widening multiply method for much faster integer range reduction. (#274)
Standarddistribution forcharusesUniforminternally. (#274)Standarddistribution forbooluses sign test. (#274)- Implement
Standarddistribution forWrapping<T>. (#436) - Implement
Uniformdistribution forDuration. (#427)
[0.4.3] - 2018-08-16
Fixed
- Use correct syscall number for PowerPC (#589)
[0.4.2] - 2018-01-06
Changed
- Use
winapion Windows - Update for Fuchsia OS
- Remove dev-dependency on
log
[0.4.1] - 2017-12-17
Added
no_stdsupport
[0.4.0-pre.0] - 2017-12-11
Added
JitterRngadded as a high-quality alternative entropy source using the system timer- new
seqmodule withsample_iter,sample_slice, etc. - WASM support via dummy implementations (fail at run-time)
- Additional benchmarks, covering generators and new seq code
Changed
thread_rngusesJitterRngif seeding from system time fails (slower but more secure than previous method)
Deprecated
samplefunction deprecated (replaced bysample_iter)
[0.3.20] - 2018-01-06
Changed
- Remove dev-dependency on
log - Update
fuchsia-zircondependency to 0.3.2
[0.3.19] - 2017-12-27
Changed
- Require
log <= 0.3.8for dev builds - Update
fuchsia-zircondependency to 0.3 - Fix broken links in docs (to unblock compiler docs testing CI)
[0.3.18] - 2017-11-06
Changed
thread_rngis seeded from the system time ifOsRngfailsweak_rngnow usesthread_rnginternally
[0.3.17] - 2017-10-07
Changed
- Fuchsia: Magenta was renamed Zircon
[0.3.16] - 2017-07-27
Added
- Implement Debug for mote non-public types
- implement
Randfor (i|u)i128 - Support for Fuchsia
Changed
- Add inline attribute to SampleRange::construct_range. This improves the benchmark for sample in 11% and for shuffle in 16%.
- Use
RtlGenRandominstead ofCryptGenRandom
[0.3.15] - 2016-11-26
Added
- Add
Rngtrait methodchoose_mut - Redox support
Changed
- Use
arc4randforOsRngon FreeBSD. - Use
arc4random(3)forOsRngon OpenBSD.
Fixed
- Fix filling buffers 4 GiB or larger with
OsRng::fill_byteson Windows
[0.3.14] - 2016-02-13
Fixed
- Inline definitions from winapi/advapi32, wich decreases build times
[0.3.13] - 2016-01-09
Fixed
- Compatible with Rust 1.7.0-nightly (needed some extra type annotations)
[0.3.12] - 2015-11-09
Changed
- Replaced the methods in
next_f32andnext_f64with the technique described Saito & Matsumoto at MCQMC'08. The new method should exhibit a slightly more uniform distribution. - Depend on libc 0.2
Fixed
- Fix iterator protocol issue in
rand::sample
[0.3.11] - 2015-08-31
Added
- Implement
Randfor arrays with n <= 32
[0.3.10] - 2015-08-17
Added
- Support for NaCl platforms
Changed
- Allow
Rngto be?Sized, impl for&mut RandBox<R>whereR: ?Sized + Rng
[0.3.9] - 2015-06-18
Changed
- Use
winapifor Windows API things
Fixed
- Fixed test on stable/nightly
- Fix
getrandomsyscall number for aarch64-unknown-linux-gnu
[0.3.8] - 2015-04-23
Changed
logis a dev dependency
Fixed
- Fix race condition of atomics in
is_getrandom_available
[0.3.7] - 2015-04-03
Fixed
- Derive Copy/Clone changes
[0.3.6] - 2015-04-02
Changed
- Move to stable Rust!
[0.3.5] - 2015-04-01
Fixed
- Compatible with Rust master
[0.3.4] - 2015-03-31
Added
- Implement Clone for
Weighted
Fixed
- Compatible with Rust master
[0.3.3] - 2015-03-26
Fixed
- Fix compile on Windows
[0.3.2] - 2015-03-26
[0.3.1] - 2015-03-26
Fixed
- Fix compile on Windows
[0.3.0] - 2015-03-25
Changed
- Update to use log version 0.3.x
[0.2.1] - 2015-03-22
Fixed
- Compatible with Rust master
- Fixed iOS compilation
[0.2.0] - 2015-03-06
Fixed
- Compatible with Rust master (move from
old_iotostd::io)
[0.1.4] - 2015-03-04
Fixed
- Compatible with Rust master (use wrapping ops)
[0.1.3] - 2015-02-20
Fixed
- Compatible with Rust master
Removed
- Removed Copy implementations from RNGs
[0.1.2] - 2015-02-03
Added
- Imported functionality from
std::rand, including:StdRng,SeedableRng,TreadRng,weak_rng()ReaderRng: A wrapper around any Reader to treat it as an RNG.
- Imported documentation from
std::rand - Imported tests from
std::rand
[0.1.1] - 2015-02-03
Added
- Migrate to a cargo-compatible directory structure.
Fixed
- Do not use entropy during
gen_weighted_bool(1)
[Rust 0.12.0] - 2014-10-09
Added
- Impl Rand for tuples of arity 11 and 12
- Include ChaCha pseudorandom generator
- Add
next_f64andnext_f32to Rng - Implement Clone for PRNGs
Changed
- Rename
TaskRngtoThreadRngandtask_rngtothread_rng(since a runtime is removed from Rust).
Fixed
- Improved performance of ISAAC and ISAAC64 by 30% and 12 % respectively, by informing the optimiser that indexing is never out-of-bounds.
Removed
- Removed the Deprecated
choose_option
[Rust 0.11.0] - 2014-07-02
Added
- document when to use
OSRngin cryptographic context, and explain why we use/dev/urandominstead of/dev/random Rng::gen_iter()which will return an infinite stream of random valuesRng::gen_ascii_chars()which will return an infinite stream of random ascii characters
Changed
- Now only depends on libcore!
- Remove
Rng.choose(), renameRng.choose_option()to.choose() - Rename OSRng to OsRng
- The WeightedChoice structure is no longer built with a
Vec<Weighted<T>>, but rather a&mut [Weighted<T>]. This means that the WeightedChoice structure now has a lifetime associated with it. - The
samplemethod onRnghas been moved to a top-level function in therandmodule due to its dependence onVec.
Removed
Rng::gen_vec()was removed. Previous behavior can be regained withrng.gen_iter().take(n).collect()Rng::gen_ascii_str()was removed. Previous behavior can be regained withrng.gen_ascii_chars().take(n).collect()- {IsaacRng, Isaac64Rng, XorShiftRng}::new() have all been removed. These all
relied on being able to use an OSRng for seeding, but this is no longer
available in librand (where these types are defined). To retain the same
functionality, these types now implement the
Randtrait so they can be generated with a random seed from another random number generator. This allows the stdlib to use an OSRng to create seeded instances of these RNGs. - Rand implementations for
Box<T>and@Twere removed. These seemed to be pretty rare in the codebase, and it allows for librand to not depend on liballoc. Additionally, other pointer types like Rc and Arc were not supported. - Remove a slew of old deprecated functions
[Rust 0.10] - 2014-04-03
Changed
- replace
Rng.shuffle'sfunctionality with.shuffle_mut - bubble up IO errors when creating an OSRng
Fixed
- Use
fill()instead ofread() - Rewrite OsRng in Rust for windows
[0.10-pre] - 2014-03-02
Added
- Seperate
randout of the standard library