Skip to content

Releases: channable/alfred-margaret

v2.1.0.0 - "All The Cases!"

31 Aug 10:54
Compare
Choose a tag to compare
  • Added a case-insensitive variant of the Boyer-Moore algorithm in the Data.Text.BoyerMooreCI.* modules. (#47)
  • Fixed a bug in the case-insensitive Aho-Corasick replacer where it would
    replace the wrong section of the haystack when the needle had a different
    byte-length than the matching part of the haystack. (#47)
  • Allow mapping the payloads of Aho-Corasick automatons. (#46)

v2.0.0.0 - "So Long Surrogates"

02 May 11:58
Compare
Choose a tag to compare

Switched to text-2.0 which uses UTF-8 encoding internally.

  • Removed Data.Text.Utf8.* modules
  • Replaced Data.Text.AhoCorasick.* and Data.Text.BoyerMoore.* (previously using UTF-16) with the UTF-8 implementation

v1.1.2.0 - "ByteArray Boogaloo"

21 Apr 10:03
Compare
Choose a tag to compare

Added UTF-8 implementations on a mock Text type (in Data.Text.Utf8).

  • Added Data.Text.Utf8* modules
  • Moved CaseSensitivity to its own Data.Text.CaseSensitivity module.
  • Added the module Data.TypedByteArray which contains thin wrappers over ByteArray and MutableByteArray.
  • Replaced uses of Data.Vector.Unboxed.Vector by TypedByteArray.

v1.1.0.0 - "Moore Features"

13 Oct 09:29
Compare
Choose a tag to compare

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)