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.
- Ported
final3
algorithm version. - Enable better performance on 32-bit systems via the
mum32bit
feature. - Benchmarks.
- Added derives for
Debug
,PartialEq
,Eq
,PartialOrd
,Ord
,Copy
, andHash
for all structs where applicable in the crate.
- [breaking-change] Changed default version to
final3
. The previous version continues to be available in the modulewyhash::v1
. - [internal] Back-to-back tests now use compiled upstream C code instead of fixed result lists.
0.5.0 - 2020-12-17
- [breaking-change] Updated
rand_core
dependency from version0.5
to version0.6
. This led to an increase in the Minimum Supported Rust Version from1.32.0
to1.36.0
.
0.4.2 - 2020-11-07
- Implement
Clone
forWyHash
andWyRng
. Thanks to @Restioson. - "
hasher
" keyword for better discoverability. Thanks to @tkaitchuck. See: rust-lang/rust#77996
0.4.1 - 2020-06-28
- Formatting of MSRV section in Readme.
0.4.0 - 2020-06-28
- [breaking-change] Updated
rand_core
dependency from version0.4
to version0.5
. This led to an increase in the Minimum Supported Rust Version from1.31.0
to1.32.0
.
0.3.0 - 2019-06-02
- [breaking-change] The random number generator now uses only the updated seed
as the internal state instead of the last generated number. This leads to the
free function
wyrng
function now receiving a mutable reference to the seed which will be used to represent the state, following the upstream interface. TheRngCore
andSeedableRng
trait implementations forWyRng
will return different numbers as in the last published version. See: #1.
0.2.1 - 2019-03-30
rand_core::RngCore
andrand_core::SeedableRng
trait implementations for the random number generator.- MIT license
0.2.0 - 2019-03-23
- Added random number generation function.
- Added C++ program using the upstream library to generate the results used in the tests.
-
The standard library is not necessary any more. The hasher trait implemented now is
core::hash::Hasher
, which is equivalent tostd::hash::Hasher
. The code should continue to work without change but deactivating the default features forno_std
compatibility is not necessary any more. -
The generated hashes have changed following the upstream project.
This is the initial release to crates.io.