We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b66e196 + 4272210 commit 761502cCopy full SHA for 761502c
CHANGELOG.md
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
8
## [Unreleased]
9
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
+
13
## [v0.3.5] - 2018-06-19
14
15
### Fixed
Cargo.toml
@@ -24,4 +24,4 @@ cortex-m = "0.1.5"
24
25
[dependencies.linked_list_allocator]
26
default-features = false
27
-version = "0.6.0"
+version = "0.8.1"
src/lib.rs
@@ -45,7 +45,6 @@
45
//! // omitted: exception handlers
46
//! ```
47
48
-#![feature(alloc)]
49
#![feature(allocator_api)]
50
#![feature(const_fn)]
51
#![no_std]
0 commit comments