From 91a35aedd193d0f2d9b508f2c850aa6874ce522f Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Thu, 7 Jun 2018 21:09:33 +0100 Subject: [PATCH] Update rand_core version number and changelog for 0.2.1. --- rand_core/CHANGELOG.md | 2 ++ rand_core/Cargo.toml | 2 +- rand_core/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rand_core/CHANGELOG.md b/rand_core/CHANGELOG.md index bb54cebc..5885e175 100644 --- a/rand_core/CHANGELOG.md +++ b/rand_core/CHANGELOG.md @@ -4,6 +4,8 @@ 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). +## [0.2.1] - 2018-06-08 +- References to a `CryptoRng` now also implement `CryptoRng`. (#470) ## [0.2.0] - 2018-05-21 - Enable the `std` feature by default. (#409) diff --git a/rand_core/Cargo.toml b/rand_core/Cargo.toml index 0f07306f..a6acfc3f 100644 --- a/rand_core/Cargo.toml +++ b/rand_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_core" -version = "0.2.0" # NB: When modifying, also modify html_root_url in lib.rs +version = "0.2.1" # NB: When modifying, also modify html_root_url in lib.rs authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/rand_core/src/lib.rs b/rand_core/src/lib.rs index 957f98a9..1b9c24c0 100644 --- a/rand_core/src/lib.rs +++ b/rand_core/src/lib.rs @@ -35,7 +35,7 @@ #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/rand_core/0.2.0")] + html_root_url = "https://docs.rs/rand_core/0.2.1")] #![deny(missing_docs)] #![deny(missing_debug_implementations)]