Skip to content

Commit 761502c

Browse files
bors[bot]avlec
andauthored
Merge #29
29: Bumped dependency linked-list-allocator, fixed feature warn. r=jonas-schievink a=avlec Fix regarding [this issue](#28 (comment)). Co-authored-by: Alec Cox <[email protected]>
2 parents b66e196 + 4272210 commit 761502c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
- Bumped the dependency of the `linked_list_allocator` crate to v0.8.1.
11+
- Removed `#![feature(alloc)]` to supress compiler warning about stability for alloc
12+
1013
## [v0.3.5] - 2018-06-19
1114

1215
### Fixed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ cortex-m = "0.1.5"
2424

2525
[dependencies.linked_list_allocator]
2626
default-features = false
27-
version = "0.6.0"
27+
version = "0.8.1"

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
//! // omitted: exception handlers
4646
//! ```
4747
48-
#![feature(alloc)]
4948
#![feature(allocator_api)]
5049
#![feature(const_fn)]
5150
#![no_std]

0 commit comments

Comments
 (0)