Skip to content

Commit 2c43268

Browse files
authored
Merge pull request rust-random#880 from vks/vigna2019
rand_xoshiro: Bump minor version
2 parents 1f5dd74 + 2b7d92c commit 2c43268

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ rand_hc = { path = "rand_hc", version = "0.2" }
8484
rand_pcg = { path = "rand_pcg", version = "0.2" }
8585
# Only for benches:
8686
rand_hc = { path = "rand_hc", version = "0.2" }
87-
rand_xoshiro = { path = "rand_xoshiro", version = "0.3" }
87+
rand_xoshiro = { path = "rand_xoshiro", version = "0.4" }
8888
rand_isaac = { path = "rand_isaac", version = "0.2" }
8989
rand_xorshift = { path = "rand_xorshift", version = "0.2" }
9090

rand_xoshiro/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.4.0] - 2019-09-03
8+
- Add xoshiro128++, 256++ and 512++ variants
9+
- Add xoroshiro128++ variant
10+
- Add `long_jump` method to RNGs missing it
11+
- Update xoshiro128** to version 1.1, breaking value stability
12+
713
## [0.3.1] - 2019-08-06
814
- Drop `byteorder`-dependency in favor of `stdlib`-implementation.
915

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.3.1" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.4.0" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR 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
@@ -70,7 +70,7 @@
7070
7171
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
7272
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
73-
html_root_url = "https://docs.rs/rand_xoshiro/0.3.1")]
73+
html_root_url = "https://docs.rs/rand_xoshiro/0.4.0")]
7474

7575
#![deny(missing_docs)]
7676
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)