Skip to content

Commit

Permalink
Upgrade std.uni to Unicode 15.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dkorpel committed Jan 6, 2024
1 parent 7b94cd0 commit 6277393
Show file tree
Hide file tree
Showing 4 changed files with 470 additions and 444 deletions.
17 changes: 17 additions & 0 deletions changelog/upgrade-unicode.dd
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
std.uni has been upgraded from Unicode 15.0.0 to 15.1.0

This Unicode update was released September 12, 2023.
See: https://www.unicode.org/versions/Unicode15.1.0/

```
import std;

void main()
{
const alphaCount = iota(0, dchar.max).filter!(std.uni.isAlpha).walkLength;
writeln(alphaCount);
// formerly: 137765
// now: 138387
// 622 new dchars return true for `isAlpha`
}
```
Loading

0 comments on commit 6277393

Please sign in to comment.