Skip to content

Commit f88df08

Browse files
committed
Prepare rand_xoshiro 0.2.1
1 parent f92473a commit f88df08

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

rand_xoshiro/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.1] - 2019-06-06
8+
- Bump `rand_core` version
9+
- Document crate features in README
10+
711
## [0.2.0] - 2019-05-28
812
- Fix `seed_from_u64(0)` for `Xoroshiro64StarStar` and `Xoroshiro64Star`. This
913
breaks value stability for these generators if initialized with `seed_from_u64`.

rand_xoshiro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_xoshiro"
3-
version = "0.2.0" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.2.1" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rand Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

rand_xoshiro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
5959
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
6060
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
61-
html_root_url = "https://docs.rs/rand_xoshiro/0.2.0")]
61+
html_root_url = "https://docs.rs/rand_xoshiro/0.2.1")]
6262

6363
#![deny(missing_docs)]
6464
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)