Skip to content

Commit a28fc75

Browse files
committed
Prepare 0.6.1 release
1 parent 5511699 commit a28fc75

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
99
You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
1010

1111

12+
## [0.6.1] - 2018-11-22
13+
- Support sampling `Duration` also for `no_std` (only since Rust 1.25) (#649)
14+
- Disable default features of `libc` (#647)
15+
1216
## [0.6.0] - 2018-11-14
1317

1418
### Project organisation

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.6.0" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.6.1" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

src/lib.rs

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

5050
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
5151
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
52-
html_root_url = "https://docs.rs/rand/0.6.0")]
52+
html_root_url = "https://docs.rs/rand/0.6.1")]
5353

5454
#![deny(missing_docs)]
5555
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)