diff options
author | inoas <mail@inoas.com> | 2022-10-27 21:20:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 22:20:27 +0100 |
commit | 93c3223e8e5d5f9ba2a4020b18bed5802c63bdff (patch) | |
tree | 964ffc8fdda2f45088273eb5463dac1782f9582e /CHANGELOG.md | |
parent | 6c9a956af844379aa8d33fa3832636b33493f776 (diff) | |
download | gleam_stdlib-93c3223e8e5d5f9ba2a4020b18bed5802c63bdff.tar.gz gleam_stdlib-93c3223e8e5d5f9ba2a4020b18bed5802c63bdff.zip |
Regex use ucp flag because they use unicode flag (#357)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 215e54b..842c85d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## v0.24.1 - unreleased +- For `regexp.compile` unicode character properties are now used when + resolving `\B`, `\b`, `\D`, `\d`, `\S`, `\s`, `\W`, and `\w` on target + Erlang. - `list.sort` is now tail recursive and will no longer exceed the stack size on large inputs on target JavaScript. - `list.sort` is now a "stable" sort, meaning equal elements are sorted in @@ -11,7 +14,7 @@ - Fixed a bug where `regex.scan` would not work correctly on utf8. - The performance of `list.flatten` has been greatly improved. - The `string_builder` module gains the `join` function. -- The `list` module gains the `shuffle` function. +- The `list` module gains the `shuffle` function. ## v0.24.0 - 2022-10-15 |