Skip to content

Commit

Permalink
changelog for 4.1.2 (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacbrodsky authored Nov 1, 2024
1 parent f131c70 commit 5b95836
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,20 @@ file [H3Core.java](./src/main/java/com/uber/h3core/H3Core.java), and support
for the Linux x64 and Darwin x64 platforms.

## Unreleased Changes

## [4.1.2] - 2024-11-01
## Fixed
- Fixed a memory leak in `polygonToCells` and optimize JNI calls. (#150)
- Use `Files.createTempFile` so temporary file permissions are more restrictive. (#141)
- Fixed a potential segfault in `cellsToMultiPolygon` on error. (#129)

## Changed
- Optimize JNI calls. (#154)
- Added JNI config and tests for native image. (#153, #155)
- Bumped dockcross versions (#151, #152)
- Upgrade Guava test dependency. (#146)
- Test Java 22. (#144)

## [4.1.1] - 2023-02-03
The changelog for this release is the same as v4.1.0. The release was run again due to an issue with the release process.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Add it to your pom.xml:
<dependency>
<groupId>com.uber</groupId>
<artifactId>h3</artifactId>
<version>4.1.0</version>
<version>4.1.2</version>
</dependency>
```

Or, using Gradle:

```gradle
compile("com.uber:h3:4.1.0")
compile("com.uber:h3:4.1.2")
```

Encode a location into a hexagon address:
Expand Down

0 comments on commit 5b95836

Please sign in to comment.