Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Oct 6, 2017
1 parent ae3d831 commit bdaa2ac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.0] - 2017-10-07

### Changed

- [breaking-change] Switched to the new allocator system. See documentation for details.

## [v0.2.2] - 2017-04-29

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

### Changed

- [breaking] Hid the HEAP variable. We now only expose an `init` function to
- [breaking-change] Hid the HEAP variable. We now only expose an `init` function to
initialize the allocator.

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

- Initial version of the allocator

[Unreleased]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.2...HEAD
[Unreleased]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.0...HEAD
[v0.3.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.2...v0.3.0
[v0.2.2]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.1.0...v0.2.0
15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>", "Jonathan Pallant <github@thejpster.org.uk>"]
authors = [
"Jorge Aparicio <jorge@japaric.io>",
"Jonathan Pallant <github@thejpster.org.uk>",
]
description = "A heap allocator for Cortex-M processors"
documentation = "https://docs.rs/alloc-cortex-m"
keywords = ["arm", "cortex-m", "allocator"]
keywords = [
"arm",
"cortex-m",
"allocator",
]
license = "MIT OR Apache-2.0"
name = "alloc-cortex-m"
version = "0.2.2"
version = "0.3.0"

[dependencies]
cortex-m = "0.1.5"
linked_list_allocator = {git = "https://github.com/phil-opp/linked-list-allocator.git"}
linked_list_allocator = "0.4.2"

0 comments on commit bdaa2ac

Please sign in to comment.