File tree Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.3.0] - 2017-10-07
11
+
12
+ ### Changed
13
+
14
+ - [ breaking-change] Switched to the new allocator system. See documentation for details.
15
+
10
16
## [ v0.2.2] - 2017-04-29
11
17
12
18
### Added
@@ -24,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
24
30
25
31
### Changed
26
32
27
- - [ breaking] Hid the HEAP variable. We now only expose an ` init ` function to
33
+ - [ breaking-change ] Hid the HEAP variable. We now only expose an ` init ` function to
28
34
initialize the allocator.
29
35
30
36
## v0.1.0 - 2016-11-19
@@ -33,7 +39,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
33
39
34
40
- Initial version of the allocator
35
41
36
- [ Unreleased ] : https://github.com/japaric/alloc-cortex-m/compare/v0.2.2...HEAD
42
+ [ Unreleased ] : https://github.com/japaric/alloc-cortex-m/compare/v0.3.0...HEAD
43
+ [ v0.3.0 ] : https://github.com/japaric/alloc-cortex-m/compare/v0.2.2...v0.3.0
37
44
[ v0.2.2 ] : https://github.com/japaric/alloc-cortex-m/compare/v0.2.1...v0.2.2
38
45
[ v0.2.1 ] : https://github.com/japaric/alloc-cortex-m/compare/v0.2.0...v0.2.1
39
46
[ v0.2.0 ] : https://github.com/japaric/alloc-cortex-m/compare/v0.1.0...v0.2.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" Jorge Aparicio <japaricious@gmail.com>" , " Jonathan Pallant <github@thejpster.org.uk>" ]
2
+ authors = [
3
+ " Jorge Aparicio <jorge@japaric.io>" ,
4
+ " Jonathan Pallant <github@thejpster.org.uk>" ,
5
+ ]
3
6
description = " A heap allocator for Cortex-M processors"
4
7
documentation = " https://docs.rs/alloc-cortex-m"
5
- keywords = [" arm" , " cortex-m" , " allocator" ]
8
+ keywords = [
9
+ " arm" ,
10
+ " cortex-m" ,
11
+ " allocator" ,
12
+ ]
6
13
license = " MIT OR Apache-2.0"
7
14
name = " alloc-cortex-m"
8
- version = " 0.2.2 "
15
+ version = " 0.3.0 "
9
16
10
17
[dependencies ]
11
18
cortex-m = " 0.1.5"
12
- linked_list_allocator = { git = " https://github.com/phil-opp/linked-list-allocator.git " }
19
+ linked_list_allocator = " 0.4.2 "
You can’t perform that action at this time.
0 commit comments