| Notes significant changes to minimal-lexical. |
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| - Missing license details for `src/bellerophon.rs`. |
| - `no_alloc` feature flag was replaced with an `alloc` feature flag. |
| - Added the `compact` feature, which sacrifices performance for smaller binary sizes. |
| - 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. |
| - Removed stackvec dependent, even on `no_alloc`. |
| - Improved the algorithms for parsing. |
| - Simplified big-integer arithmetic, and the slow path algorithms. |
| - Reduced the binary sizes. |
| - Added optimizations for small floats. |
| - Remove cached_float and infer exponents rather than store them. |
| - Added the Eisel-Lemire algorithm. |