Skip to content

Commit 918765d

Browse files
committed
Apply requested changes
1 parent 3b038a5 commit 918765d

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ sudo: false
5454
#
5555
# TODO: SIMD support on stable releases
5656
# NOTE: SIMD support is unreliable on nightly; we track the latest release
57+
# NOTE: Test for alloc feature in no_std is not included here because it depends
58+
# on the alloc crate stabilized in Rust 1.36.
5759
matrix:
5860
include:
5961
- rust: 1.32.0

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.
1111
## [Unreleased]
1212
- Fix `no_std` behaviour, appropriately enable c2-chacha's `std` feature (#844)
1313
- Add a `no_std` target to CI to continously evaluate `no_std` status (#844)
14+
- `alloc` feature in `no_std` is available since Rust 1.36 (#856)
1415

1516
## [0.7.0] - 2019-06-28
1617

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Rand release if required, but the change must be noted in the changelog.
8484
Rand is built with these features enabled by default:
8585

8686
- `std` enables functionality dependent on the `std` lib
87-
- `alloc` (implied by `std`) enables functionality requiring an allocator
87+
- `alloc` (implied by `std`) enables functionality requiring an allocator (when using this feature in `no_std`, Rand requires Rustc version 1.36 or greater)
8888
- `getrandom` (implied by `std`) is an optional dependency providing the code
8989
behind `rngs::OsRng`
9090

rand_core/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ 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+
## [Unreleased]
8+
- `alloc` feature in `no_std` is available since Rust 1.36 (#856)
9+
710
## [0.5.1] - 2019-09-02
811
### Added
912
- `OsRng` added to `rand_core` (#863)

0 commit comments

Comments
 (0)