File tree 6 files changed +11
-5
lines changed
6 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
9
9
You may also find the [ Update Guide] ( UPDATING.md ) useful.
10
10
11
11
12
- ## [ 0.5.1] - Unreleased
12
+ ## [ 0.5.1] - 2018-06-08
13
+
14
+ ### New distributions
15
+ - Added Cauchy distribution. (#474 , #486 )
16
+ - Added Pareto distribution. (#495 )
13
17
14
18
### Platform support and ` OsRng `
15
19
- Remove blanket Unix implementation. (#484 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rand"
3
- version = " 0.5.0 " # NB: When modifying, also modify html_root_url in lib.rs
3
+ version = " 0.5.1 " # NB: When modifying, also modify html_root_url in lib.rs
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ 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.2.1] - 2018-06-08
8
+ - References to a ` CryptoRng ` now also implement ` CryptoRng ` . (#470 )
7
9
8
10
## [ 0.2.0] - 2018-05-21
9
11
- Enable the ` std ` feature by default. (#409 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rand_core"
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
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change 35
35
36
36
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
37
37
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
38
- html_root_url = "https://docs.rs/rand_core/0.2.0 " ) ]
38
+ html_root_url = "https://docs.rs/rand_core/0.2.1 " ) ]
39
39
40
40
#![ deny( missing_docs) ]
41
41
#![ deny( missing_debug_implementations) ]
Original file line number Diff line number Diff line change 223
223
224
224
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
225
225
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
226
- html_root_url = "https://docs.rs/rand/0.5.0 " ) ]
226
+ html_root_url = "https://docs.rs/rand/0.5.1 " ) ]
227
227
228
228
#![ deny( missing_docs) ]
229
229
#![ deny( missing_debug_implementations) ]
You can’t perform that action at this time.
0 commit comments