# Changelog ## v0.1.6 (2024-09-29) I discourage the use of this library, please look for an alternative. Use it only as learning resource or so. The library contains a few cases that produce UB. There are better alternatives, such as . - Fixed one case of UB (but not the one of the realloc implementation) ## v0.1.5 (2022-03-17) - optimized "realloc" method if existing memory chunk(s) allocation is already big enough ## v0.1.4 (2022-03-17) - improved API for macros: they now include named parameters (that are optional; defaults are used then) - `heap!(chunks=16, chunksize=256)` - `heap_bitmap!(chunks=16)` - check heap alignment on first allocation (because alignment of the backing memory can not be guaranteed during const time) (see )