v1.8.0
Here is a concise commit message summarizing the changes in the diffs: refactor: simplify `fastParseFloat` using `strconv.ParseFloat` - Replace the custom loop-based float parsing logic with `strconv.ParseFloat`. - Utilize `unsafe.String` for zero-allocation byte slice to string conversion before parsing. - Add `strconv` to the package imports.