-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Changelog | ||
|
||
## v1.1.0.0 - "Moore Features" (2020-10-13) | ||
|
||
The most notable addition in this release is the implementation of the Boyer-Moore string search algorithm. | ||
|
||
**Compatibility:** | ||
|
||
- Extracted the UTF-16 manipulation functions from `Data.Text.AhoCorasick.Automaton` into `Data.Text.Utf16` | ||
- Changed `Data.Text.AhoCorasick.Searcher.Searcher` to remember the case sensitivity used for constructing the searcher | ||
- Removed `Data.Text.AhoCorasick.Searcher.containsAnyIgnoreCase`, the correct implementation is now chosen by `containsAny` based on the case sensitivity of the searcher | ||
|
||
Other changes: | ||
|
||
- Added `Data.Text.AhoCorasick.Splitter` for splitting a lot of text using the same needle | ||
- Added `Data.Text.BoyerMoore.Automaton`, a UTF-16 implementation of Boyer-Moore | ||
- Added `Data.Text.BoyerMoore.Searcher` for searching for multiple needles at once using Boyer-Moore | ||
- Added `Data.Text.BoyerMoore.Replacer` for replacing text based on the Boyer-Moore search | ||
- Added optional `FromJSON`/`ToJSON` instances for most types (can be toggled via `aeson` cabal flag) | ||
|
||
## v1.0.0.0 - "Initial Release" (2019-03-19) | ||
|
||
This is the initial open-source release. | ||
|
||
- Added `Data.Text.AhoCorasick.Automaton`, a UTF-16 implementation of the Aho-Corasick search algorithm | ||
- Added `Data.Text.AhoCorasick.Searcher`, a bulk search abstraction based on Aho-Corasick | ||
- Added `Data.Text.AhoCorasick.Replacer`, a bulk replace abstraction based on Aho-Corasick |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
resolver: lts-13.10 | ||
resolver: lts-16.18 | ||
packages: | ||
- . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters