From 57c0d653e480935621306707f70abc95cef49131 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Fri, 21 Aug 2026 12:44:56 +0300 Subject: [PATCH] fix: handle asterisks and backticks in search queries Queries containing asterisks or backticks no longer return zero results. Update changelog and bump version (#31). --- CHANGELOG.md | 3 +++ pubspec.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d7d971..dc4f0ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## 0.5.2 +- Fix bug where search patterns containing asterisks (*) or backticks (`) returned no results, closes #31. + ## 0.5.1 - Range error when using limit argument to fuse.search, closes #25. [Original PR](https://github.com/comigor/fuzzy/pull/26). diff --git a/pubspec.yaml b/pubspec.yaml index a2a4fb5..a5f3f70 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: fuzzy -version: 0.5.1 +version: 0.5.2 description: > Fuzzy search in Dart. Initially a code conversion, subset of Fuse.js.