From 871306e7308b7e52149cac54c44f84d1be3b804c Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Wed, 6 Nov 2019 14:43:39 +0000 Subject: [PATCH] Minor README updates for 0.2.0 --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4fab04b..f7d1bc2 100644 --- a/README.md +++ b/README.md @@ -56,11 +56,21 @@ See main.rs for a simple example program. ## Compiled dictionaries -A tool to compile dictionary files (`*.dic`) as used by libhyphen -into mapped_hyph's binary format is not yet included. +The `hyf_compile` tool is used to generate `.hyf` files for mapped_hyph +from standard `.dic` (or `.pat`) files as used by libhyphen, LibreOffice, etc. + +(A compiled version of the `hyph_en_US` dictionary from libhyphen is currently +included here, as it is handy for testing purposes.) ## Release Notes +### 0.2.0 + +* Implemented a hyphenation table compiler in the `builder` submodule, + and `hyf_compile` command-line tool. + +* Moved C-callable API functions into an `ffi` submodule. + ### 0.1.0 * Initial release.