Skip to content

Commit

Permalink
Release Low Memory Aho-Corasick 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanLuMaye committed May 2, 2024
1 parent 14cc337 commit 91fc66f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
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.

0 comments on commit 91fc66f

Please sign in to comment.