1# Changelog 2 3Notes significant changes to minimal-lexical. 4 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8## [0.1.4] 2021-10-02 9### Added 10- Missing license details for `src/bellerophon.rs`. 11 12## [0.2.0] 2021-09-10 13### Changed 14- `no_alloc` feature flag was replaced with an `alloc` feature flag. 15 16## [0.1.3] 2021-09-04 17### Added 18- Added the `compact` feature, which sacrifices performance for smaller binary sizes. 19- Added the `nightly` feature, which adds inline ASM to use FPU instructions for to ensure proper rounding on x86 targets using the x87 FPU without SSE2. 20 21### Changed 22- Removed stackvec dependent, even on `no_alloc`. 23- Improved the algorithms for parsing. 24- Simplified big-integer arithmetic, and the slow path algorithms. 25- Reduced the binary sizes. 26- Added optimizations for small floats. 27 28## [0.1.2] 2021-05-09 29### Added 30- Remove cached_float and infer exponents rather than store them. 31 32## [0.1.1] 2021-05-08 33### Added 34- Added the Eisel-Lemire algorithm. 35 36## [0.1.0] 2021-04-27 37### Added 38- Initial version. 39