qadapt/CHANGELOG.md

32 lines
968 B
Markdown
Raw Permalink Normal View History

2019-02-11 00:18:16 -05:00
# Version 1.0.3
- Mark the crate deprecated; [alloc-counter](https://crates.io/crates/alloc_counter)
does a better job at solving the problems QADAPT was driven for, and I'll be putting
my effort towards improving it instead.
# Version 1.0.2
2019-01-20 16:35:33 -05:00
- Don't panic if calling guarded code and QADAPT isn't the allocator;
Instead, let code determine at runtime whether or not QADAPT is enabled
and let users build their own asserts - #7
- This fixes issues where libraries making use of QADAPT would trigger
panics in anyone that didn't use the library.
2019-01-01 14:23:14 -05:00
# Version 1.0.1 (2019-01-01)
- Use the system allocator and remove libc dependency
# Version 1.0.0 (2018-12-15)
- Now working on Stable because of the Rust 1.31 release (and `const fn`)
- Documentation added
# Version 0.7.0 (2018-12-03)
2018-11-18 21:30:55 -05:00
- Fix conditional compilation flags never stripping QADAPT code
2018-11-17 10:39:38 -05:00
# Version 0.6.0 (2018-11-17)
2019-01-01 14:23:14 -05:00
- Fixed exit early bugs when closures contained `return` statements