Skip to content

Latest commit

 

History

History
65 lines (38 loc) · 1.71 KB

CHANGELOG.md

File metadata and controls

65 lines (38 loc) · 1.71 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

v0.3.3 - 2018-04-23

  • Bumped the dependency of the linked_list_allocator crate to v0.6.0.

v0.3.2 - 2018-02-26

Changed

  • Bumped the dependency of the linked_list_allocator crate to v0.5.0.

v0.3.1 - 2017-10-07

Fixed

  • The example in the documentation.

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

  • a __rust_allocate_zeroed symbol as it's needed on recent nightlies.

v0.2.1 - 2016-11-27

Fixed

  • The heap size is end_addr - start_addr. Previously, it was wrongly calculated as end_addr - start_addr - 1.

v0.2.0 - 2016-11-19

Changed

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

v0.1.0 - 2016-11-19

Added

  • Initial version of the allocator