Skip to content

Commit 276c8be

Browse files
committed
Merge branch '0.5'
2 parents 6d66da9 + 7f00a4b commit 276c8be

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
99
You may also find the [Update Guide](UPDATING.md) useful.
1010

1111

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)
1317

1418
### Platform support and `OsRng`
1519
- Remove blanket Unix implementation. (#484)

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"
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
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

rand_core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ 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] - 2018-06-08
8+
- References to a `CryptoRng` now also implement `CryptoRng`. (#470)
79

810
## [0.2.0] - 2018-05-21
911
- Enable the `std` feature by default. (#409)

rand_core/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_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
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

rand_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
3636
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
3737
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")]
3939

4040
#![deny(missing_docs)]
4141
#![deny(missing_debug_implementations)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223

224224
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
225225
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")]
227227

228228
#![deny(missing_docs)]
229229
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)