diff options
author | Marco A L Barbosa <malbarbo@gmail.com> | 2024-10-18 20:09:24 -0300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-10-25 14:20:54 +0100 |
commit | 85d159bf81a5aacf33e316cec7a57de473be91e5 (patch) | |
tree | 93c6862634f20a7d4ac15691eef37596358311c4 /CHANGELOG.md | |
parent | e412a09dda625c22656228f01928e98ec75fb82b (diff) | |
download | gleam_stdlib-85d159bf81a5aacf33e316cec7a57de473be91e5.tar.gz gleam_stdlib-85d159bf81a5aacf33e316cec7a57de473be91e5.zip |
Improve float.to_string on JavaScript
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d734bbe..cdd047c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,14 @@ ## v0.41.0 - Unreleased - The `bit_array` module gains the `compare` function. -- The `float` modeule gains the `to_precision` function. -- The `try_fold` function in the `iterator` module is now tail recursive. +- The `float` module gains the `to_precision` function. +- The `iterator.try_fold` function is now tail recursive. - The performance of many functions in the `string` module has been improved. -- The `concat` function in the `list` module has been deprecated in favour of - `flatten`. +- The `list.concat` function has been deprecated in favour of `list.flatten`. +- The handling of exponentials and signs in the `float.to_string` function has + been improved on JavaScript. +- The `string.inspect` function delegates the inspection of floats to + `float.to_string`. ## v0.40.0 - 2024-08-19 |