File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ rand_hc = { path = "rand_hc", version = "0.2" }
84
84
rand_pcg = { path = " rand_pcg" , version = " 0.2" }
85
85
# Only for benches:
86
86
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 " }
88
88
rand_isaac = { path = " rand_isaac" , version = " 0.2" }
89
89
rand_xorshift = { path = " rand_xorshift" , version = " 0.2" }
90
90
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
13
## [ 0.3.1] - 2019-08-06
8
14
- Drop ` byteorder ` -dependency in favor of ` stdlib ` -implementation.
9
15
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
authors = [" The Rand Project Developers" ]
5
5
license = " MIT OR Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change 70
70
71
71
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
72
72
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 " ) ]
74
74
75
75
#![ deny( missing_docs) ]
76
76
#![ deny( missing_debug_implementations) ]
You can’t perform that action at this time.
0 commit comments