Skip to content
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
26 changes: 13 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
dockcross-only: ["android-arm", "android-arm64", "linux-arm64", "linux-armv5", "linux-armv7", "linux-s390x", "linux-ppc64le", "linux-x64", "linux-x86", "windows-static-x64", "windows-static-x86"]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -31,7 +31,7 @@ jobs:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down Expand Up @@ -74,16 +74,16 @@ jobs:
dockcross-only: ["android-arm", "android-arm64", "linux-arm64", "linux-armv5", "linux-armv7", "linux-s390x", "linux-ppc64le", "linux-x64", "linux-x86", "windows-static-x64", "windows-static-x86"]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: actions/setup-java@v2
- uses: actions/setup-java@v4
with:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand All @@ -109,7 +109,7 @@ jobs:
java-version: [8, 11, 17, 21, 22]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -118,7 +118,7 @@ jobs:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
java-version: [8]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -157,7 +157,7 @@ jobs:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
java-version: [8]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -195,7 +195,7 @@ jobs:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
java-version: [ 21 ]

steps:
- uses: actions/checkout@v2.1.1
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -245,7 +245,7 @@ jobs:
distribution: "${{ matrix.java-distribution }}"
java-version: "${{ matrix.java-version }}"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v4

- uses: actions/setup-java@v2
- uses: actions/setup-java@v4
with:
distribution: "adopt"
java-version: "15"

- uses: actions/cache@v2
- uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Coverage Status](https://coveralls.io/repos/github/uber/h3-java/badge.svg?branch=master)](https://coveralls.io/github/uber/h3-java?branch=master)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.uber/h3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.uber/h3)
[![H3 Version](https://img.shields.io/badge/h3-v4.2.0-blue.svg)](https://github.com/uber/h3/releases/tag/v4.2.0)
[![H3 Version](https://img.shields.io/badge/h3-v4.2.1-blue.svg)](https://github.com/uber/h3/releases/tag/v4.2.1)

This library provides Java bindings for the [H3 Core Library](https://github.com/uber/h3). For API reference, please see the [H3 Documentation](https://h3geo.org/).

Expand All @@ -18,14 +18,14 @@ Add it to your pom.xml:
<dependency>
<groupId>com.uber</groupId>
<artifactId>h3</artifactId>
<version>4.2.0</version>
<version>4.1.1</version>
</dependency>
```

Or, using Gradle:

```gradle
compile("com.uber:h3:4.2.0")
compile("com.uber:h3:4.1.1")
Comment on lines +21 to +28
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These say 4.1.1 instead of 4.2.1

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this was an intentional reversion since no 4.2.0 or 4.2.1 package has actually been published.

Copy link
Collaborator

@dfellis dfellis Mar 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought we were keeping Major and Minor in sync with the C library and leaving Patch free for the bindings?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My understanding as well

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't the version I would like to publish; this is just so the README is providing working instructions to those that stumble upon it rather than pointing to a version that doesn't exist.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, now I get it. Gotcha. Hopefully the publishing roadblock is cleared soon.

```

Encode a location into a hexagon address:
Expand Down
2 changes: 1 addition & 1 deletion h3version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
h3.git.reference=v4.2.0
h3.git.reference=v4.2.1