From ab2353936544a60b5f2eb669e274c301df44bbd2 Mon Sep 17 00:00:00 2001 From: Ryan LuMaye Date: Thu, 2 May 2024 19:35:13 -0400 Subject: [PATCH] Release Low Memory Aho-Corasick 1.1.2 --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- gradle.properties | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a6203f..8da758d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased](https://github.com/pkware/LowMemoryAhoCorasick/tree/main) +## [1.1.2](https://github.com/pkware/LowMemoryAhoCorasick/tree/1.1.2) +### Fixed +- Crashes caused by the `\u0000` character in strings. + ## [1.1.1](https://github.com/pkware/LowMemoryAhoCorasick/tree/1.1.1) ### Fixed - Issue where result ranges would be incorrect or cause crashes due to changing string sizes when disabling case-sensitivity. diff --git a/README.md b/README.md index 10a75b2..9043893 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ are extensively documented. If using gradle one should use the following in their `build.gradle.kts` file's dependency block. ```Kotlin -implementation("com.pkware.ahocorasick:low-memory-aho-corasick:1.1.1") +implementation("com.pkware.ahocorasick:low-memory-aho-corasick:1.1.2") ``` If using POM one can use the following for the latest version of the library. @@ -33,7 +33,7 @@ If using POM one can use the following for the latest version of the library. com.pkware.ahocorasick low-memory-aho-corasick - 1.1.1 + 1.1.2 ``` @@ -154,4 +154,4 @@ Time required to add all dictionary terms and call `build` for each algorithm. 13. Make a PR with your changes. 14. Merge the next version PR after approval. -If step 8 or 9 fails, drop the Sonatype repo, fix the problem, commit, and start again at step 8. \ No newline at end of file +If step 8 or 9 fails, drop the Sonatype repo, fix the problem, commit, and start again at step 8. diff --git a/gradle.properties b/gradle.properties index 9935848..bcefd3b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ kotlin.code.style=official -lowMemoryAhoCorasickVersion=1.1.2-SNAPSHOT +lowMemoryAhoCorasickVersion=1.1.2 POM_ARTIFACT_ID=low-memory-aho-corasick POM_NAME=Low Memory Aho-Corasick -POM_DESCRIPTION=Low memory, fast Aho-Corasick implementation. \ No newline at end of file +POM_DESCRIPTION=Low memory, fast Aho-Corasick implementation.