Skip to content

Commit bdaa2ac

Browse files
committed
v0.3.0
1 parent ae3d831 commit bdaa2ac

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

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+
1016
## [v0.2.2] - 2017-04-29
1117

1218
### Added
@@ -24,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2430

2531
### Changed
2632

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
2834
initialize the allocator.
2935

3036
## v0.1.0 - 2016-11-19
@@ -33,7 +39,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3339

3440
- Initial version of the allocator
3541

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
3744
[v0.2.2]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.1...v0.2.2
3845
[v0.2.1]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.0...v0.2.1
3946
[v0.2.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.1.0...v0.2.0

Cargo.toml

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
[package]
2-
authors = ["Jorge Aparicio <[email protected]>", "Jonathan Pallant <[email protected]>"]
2+
authors = [
3+
"Jorge Aparicio <[email protected]>",
4+
"Jonathan Pallant <[email protected]>",
5+
]
36
description = "A heap allocator for Cortex-M processors"
47
documentation = "https://docs.rs/alloc-cortex-m"
5-
keywords = ["arm", "cortex-m", "allocator"]
8+
keywords = [
9+
"arm",
10+
"cortex-m",
11+
"allocator",
12+
]
613
license = "MIT OR Apache-2.0"
714
name = "alloc-cortex-m"
8-
version = "0.2.2"
15+
version = "0.3.0"
916

1017
[dependencies]
1118
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"

0 commit comments

Comments
 (0)