Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/big-rats-occur.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/heavy-clouds-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/huge-banks-attend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/moody-turtles-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-weeks-enter.md

This file was deleted.

25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# unicode-segmenter

## 0.16.0

### Minor Changes

- 9ee7b6d: Remove pre-built bundled entrypoints from the package

### Patch Changes

- 12dc573: Fix GB9c rule; reset internal "InCB=Consonant" state properly.

So giving the following input:

```
# Malayalam KA + Virama + SPACE + VA
"क्‌ क"
```

Will now produces three sperated segments correctly.

Thanks to @spaceemotion for reporting this issue.

- f5d3453: Fix G9Bc rule; `ZWNJ`(InCB=None) handling was missing. Thanks to @spaceemotion for reporting this.
- 8ec376e: Reset `InCB=Linker` tracking state for a new boundary.
- 877b76c: Fix `Extend + Extended_Pictographic` cluster break

## 0.15.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unicode-segmenter",
"version": "0.15.0",
"version": "0.16.0",
"type": "module",
"description": "A lightweight implementation of the Unicode Text Segmentation (UAX #29)",
"license": "MIT",
Expand Down
Loading