Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Low Memory Aho-Corasick 1.1.2 #22

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -33,7 +33,7 @@ If using POM one can use the following for the latest version of the library.
<dependency>
<groupId>com.pkware.ahocorasick</groupId>
<artifactId>low-memory-aho-corasick</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

Expand Down Expand Up @@ -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.
If step 8 or 9 fails, drop the Sonatype repo, fix the problem, commit, and start again at step 8.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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.
POM_DESCRIPTION=Low memory, fast Aho-Corasick implementation.
Loading