diff options
author | Michael Mark <michael.mark@oit.edu> | 2024-05-24 17:05:08 -0700 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-29 12:26:22 +0100 |
commit | 9799d2081826d63023219899c79fe768f23892d6 (patch) | |
tree | 033d50e1d744284257c3c9102f135fb2bab8240f /CHANGELOG.md | |
parent | 26c7f2e0968906d4bf77efdea9e6c0389df10bee (diff) | |
download | gleam_stdlib-9799d2081826d63023219899c79fe768f23892d6.tar.gz gleam_stdlib-9799d2081826d63023219899c79fe768f23892d6.zip |
Updated CHANGELOG.md edits to new unreleased section
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fbf7a42..e8ce332 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ - The `min` and `max` functions of the `order` module have been deprecated. - The `dict` and `set` modules gain the `is_empty` function. +- Fixed `string.inspect` not formatting ASCII escape codes on Erlang that could + lead to unexpected behavior. Now, all ASCII escape codes less than 32, as well + as escape code 127, are converted into \u{xxxx} syntax. ## v0.38.0 - 2024-05-24 @@ -13,8 +16,8 @@ - The `dict` module gains the `each` function. - The `list` module gains the `wrap` function. - The `iterator` module gains the `find_map` function. -- Fixed `string.inspect` not formatting the `\f` (form feed), `\b` (backspace), - `\e` (escape), and `\v` (vertical tab) control characters correctly on Erlang. +- Fixed `string.inspect` not formatting the `\f` form feed control character + correctly on Erlang. - `dynamic.unsafe_coerce` function has been deprecated. - Fixed `bit_array` slices of slices sometimes being incorrect on JavaScript. - The `dict` module gains the `combine` function. |