Skip to content

Commit 34aa769

Browse files
authored
Merge pull request #1081 from taiki-e/playground
Enable all stable features in the playground
2 parents 98a1aaf + e5eec8e commit 34aa769

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88

99
You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
1010

11+
## [0.8.1] - 2020-12-31
12+
### Other
13+
- Enable all stable features in the playground (#1081)
14+
1115
## [0.8.0] - 2020-12-18
1216
### Platform support
1317
- The minimum supported Rust version is now 1.36 (#1011)

Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -85,3 +85,6 @@ bincode = "1.2.1"
8585
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open
8686
all-features = true
8787
rustdoc-args = ["--cfg", "doc_cfg"]
88+
89+
[package.metadata.playground]
90+
features = ["small_rng", "serde1"]

rand_core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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.6.1] - 2020-12-31
8+
### Other
9+
- Enable all stable features in the playground (#1081)
10+
711
## [0.6.0] - 2020-12-08
812
### Breaking changes
913
- Bump MSRV to 1.36, various code improvements (#1011)

rand_core/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -28,3 +28,6 @@ getrandom = { version = "0.2", optional = true }
2828
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open
2929
all-features = true
3030
rustdoc-args = ["--cfg", "doc_cfg"]
31+
32+
[package.metadata.playground]
33+
all-features = true

0 commit comments

Comments
 (0)