From a86bfac6e6480069701965fdb44aac0decb1370d Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Tue, 9 Jan 2024 11:47:47 -0500 Subject: [PATCH] Prep for release. --- CHANGELOG.md | 6 +++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 011c6aa..5e1980c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## 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. +* Added support for searching `bytes`, `bytearray`, `memoryview`, and similar objects using the `BytesAhoCorasick` class. Thanks to Isaac Garzón. ## 0.20.0 diff --git a/Cargo.lock b/Cargo.lock index 1bff49c..5a1e9e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "ahocorasick_rs" -version = "0.21.1" +version = "0.22.0" dependencies = [ "aho-corasick", "itertools", diff --git a/Cargo.toml b/Cargo.toml index 8f8dce2..96babed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ahocorasick_rs" -version = "0.21.1" +version = "0.22.0" edition = "2021" authors = ["G-Research ", "Itamar Turner-Trauring "] description = "Search a string for multiple substrings at once"