diff --git a/Cargo.toml b/Cargo.toml index f40845d2961..96d77a45234 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,12 +71,12 @@ libc = { version = "0.2.22", optional = true, default-features = false } [target.'cfg(not(target_os = "emscripten"))'.dependencies] rand_chacha = { path = "rand_chacha", version = "0.2.3", default-features = false, optional = true } [target.'cfg(target_os = "emscripten")'.dependencies] -rand_hc = { path = "rand_hc", version = "0.2.1", optional = true } +rand_hc = { path = "rand_hc", version = "0.3.0", optional = true } [dev-dependencies] rand_pcg = { path = "rand_pcg", version = "0.2" } # Only for benches: -rand_hc = { path = "rand_hc", version = "0.2" } +rand_hc = { path = "rand_hc", version = "0.3.0" } # Only to test serde1 bincode = "1.2.1" diff --git a/rand_hc/CHANGELOG.md b/rand_hc/CHANGELOG.md index 4d0c9fd47ca..ad9fe4dfb40 100644 --- a/rand_hc/CHANGELOG.md +++ b/rand_hc/CHANGELOG.md @@ -4,8 +4,10 @@ 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] -- impl PartialEq+Eq for Hc128Rng and Hc128Core (#975) +## [0.3.0] - 2020-12-08 +- Bump `rand_core` version to 0.6.0 +- Bump MSRV to 1.36 (#1011) +- impl PartialEq+Eq for Hc128Rng and Hc128Core (#979) - Drop some unsafe code, fixing an unsound internal function (#960) ## [0.2.0] - 2019-06-12 diff --git a/rand_hc/Cargo.toml b/rand_hc/Cargo.toml index 36c58294475..4ee7e5af04d 100644 --- a/rand_hc/Cargo.toml +++ b/rand_hc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_hc" -version = "0.2.1" +version = "0.3.0" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md"