Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 3.07 KB

CHANGELOG.md

File metadata and controls

62 lines (40 loc) · 3.07 KB

Changelog

v2.1.0.2 - "All the bounds!" (2024-09-06)

Publishing requires cabal to know the version bounds as well.

v2.1.0.1 - "Higher bounds!" (2024-09-05)

Tested on GHC 9.6.6.

  • Revise dependency bounds (#62 thanks @Bodigrim)
  • Allow using primitive < 0.9 and vector < 0.14 (#59 thanks @rampion)

v2.1.0.0 - "All The Cases!" (2022-08-31)

  • 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" (2022-05-02)

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" (2022-04-21)

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 private 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" (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