- Fix an issue with the decoder that messed up words with spaces.
- Update the major version due to a requirement on rxjs 6.
- Move to ES2017 for speed improvements.
- Require node >= 8
- Improve suggestion when accents are involved.
- Improve the speed of generating suggestions for long compound words.
- Expose the compound suggestions.
- convert suggestion generator to actual javascript generators. This is a breaking change to the genSuggestions interface. There are no known consumers.
- Add ability to combine the suggestion results from multiple tries (work in progress).
- Add support for compounded word searches.
- Add support for compound word suggestions.
- update packages and remove dependency on fs-promise.
- fix an issue where words trailed by extra characters were considered correct, like: 'bananasttt'.
- add generating suggestions from the Trie.
- added Trie class and the ability to walk a Trie while controlling the depth.
- added command line to read and write .trie files.