Skip to content

Commit ab6ff9b

Browse files
Version Packages (#99)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 58c8d1a commit ab6ff9b

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.changeset/fifty-tips-sit.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# unicode-segmenter
22

3+
## 0.14.1
4+
5+
### Patch Changes
6+
7+
- ac96013: Removed inefficient optimization code from grapheme segmenter.
8+
9+
The single range cache is barely hit after the entire BMP cache is hit.
10+
So removed it to reduce code size, and to reduce comparison count.
11+
12+
Worth occupying 64KB of linear memory for BMP. It should definitely be acceptable, as it still uses less heap memory size than executing graphemer's uncompressed code.
13+
314
## 0.14.0
415

516
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unicode-segmenter",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"type": "module",
55
"description": "A lightweight implementation of the Unicode Text Segmentation (UAX #29)",
66
"license": "MIT",

0 commit comments

Comments
 (0)