Releases: fastfloat/fast_float
Releases · fastfloat/fast_float
Version 3.8.0
This release improves performance in common cases.
What's Changed
- Conditional Clinger's fast path in #153
Full Changelog: v3.7.0...v3.8.0
Version 3.7.0
What's Changed
Full Changelog: v3.6.0...v3.7.0
Version 3.6.0
What's Changed
- Simplified Clinger's fast path for increased portability in #150 credit to @jakubjelinek
- Fix some typos by @striezel in #140
- 🔨 add library ALIAS FastFloat::fast_float by @OlivierLDff in #145
- update actions/checkout in GitHub Actions to v3 by @striezel in #141
- Don't use __umulh() with MinGW on ARM64 by @kou in #147
- 🔨 Don't write to global CMAKE_CXX_STANDARD by @OlivierLDff in #144
- 🔨 Introduce FASTFLOAT_INSTALL to make install optional by @OlivierLDff in #143
New Contributors
- @striezel made their first contribution in #140
- @OlivierLDff made their first contribution in #145
- @kou made their first contribution in #147
Full Changelog: v3.5.1...v3.6.0
Version 3.5.1
Fixing typo with respect to emscripten.
Full Changelog: v3.5.0...v3.5.1
Version 3.5.0
What's Changed
- Better support for emscripten by @lemire
- Make endianness detection more portable by @jwakely in #123
- Fix deduction failure for std::min call by @jwakely in #122
- Fixed installation on other than Ubuntu GNU/Linux distributions by @xvitaly in #127
- Export CMake targets as architecture independent by @xvitaly in #129
- python: set file encoding by @fargies in #126
New Contributors
- @jwakely made their first contribution in #123
- @xvitaly made their first contribution in #127
- @fargies made their first contribution in #126
Full Changelog: v3.4.0...v3.4.1
Version 3.4.0
Patch release.
Fix #117
Version 3.2.0
Removing broken and unsupported C++20 code.
Version 3.1.0
Patch release for version 3.0.
Fixes #106
Fixes #105
Special thanks to @mumbleskates for reporting these issues !
Version 3.0.0
This adds a much faster parser for long input strings (e.g., 132.312312321321321321321312321321e131
) credit: @Alexhuszagh
Version 2.0.0
A new function was added which allows you to specify that the decimal separator is the comma. The from_chars
function is unchanged.
credit @pitrou