* Added support for Python 3.13. * Dropped support for Python 3.8.
0.22.0
* The GIL is released when using a `bytes` haystack with `BytesAhoCorasick`. Thanks to Isaac Garzón.
0.21.0
* Added support for searching `bytes`, `bytearray`, `memoryview`, and similar objects using the `BytesAhoCorasick` class. Thanks to Isaac Garzón.
0.20.0
* Added support for Python 3.12.
0.19.0
* If an empty string is passed in as a pattern, `AhoCorasick()` will now raise a `ValueError`. Previously using empty patterns could result in garbage results or exceptions when matching. * Upgraded to `aho-corasick` v1.1.1.
0.18.0
* Upgraded to `aho-corasick` v1.1.0, which can run faster on ARM machines like newer Macs.