diff --git a/Cargo.lock b/Cargo.lock index f10cf31..161400b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "lexmatch" -version = "0.2.3" +version = "0.3.0" dependencies = [ "clap", "suffix", diff --git a/Cargo.toml b/Cargo.toml index 4e4d503..6039d8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0+" name = "lexmatch" readme = "README.md" repository = "https://github.com/proycon/lexmatch" -version = "0.2.3" +version = "0.3.0" include = ["src/**/*", "LICENSE", "README.md"] [dependencies] diff --git a/README.md b/README.md index f6dbc16..a0cf556 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,8 @@ You can configure a minimum frequency threshold using ``--freq``. Rather than match all of the lexicon against the text, you can also iterate over tokens in the text and check if they occur in the lexicon. This uses a -hash-map instead of a suffix array and is typically faster. It is more limited, -however, and can not be used with frequency thresholding or counting. It will +hash map instead of a suffix array and is typically faster. It is more limited, +however, and can not be used with frequency thresholds or counting. It will always produce verbose output (similar to ``--verbose``): ```