Releases: azu/kuromojin
Releases · azu/kuromojin
v3.0.0
Bug Fixes
- deps: update to [email protected] (#10) (7966e54)
Features
- use lru_map for caching (57952f8)
BREAKING CHANGES
- deps: update to [email protected]
It includes bug fix, but some tokens will be changed.
takuyaa/kuromoji.js#37
v2.1.1
v2.1.0
2.0.0
Code Refactoring
BREAKING CHANGES
Remove default function
kuromojin v1.1.0 export tokenize
as default function.
kuromojin v2.0.0 remove the default function.
// v1.x
import kuromojin from "kuromojin";
// kuromojin === tokenize
V2.0 should use import {tokenize} from "kuromojin"
instead of it
// v2.x
import {tokenize} from "kuromojin";