Skip to content

Commit

Permalink
Updated pom.xml for 5.23.0
Browse files Browse the repository at this point in the history
Updated for Neo4j 5.23.0
  • Loading branch information
davidfauth committed Sep 3, 2024
1 parent 6b6f7f6 commit 38ec85c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

<groupId>com.neo4jh3</groupId>
<artifactId>neo4jh3</artifactId>
<version>5.19.1</version>
<version>5.23.0</version>

<properties>
<neo4j.version>5.19.0</neo4j.version>
<neo4j.version>5.23.0</neo4j.version>
<lang3.version>3.13.0</lang3.version>
<uber.version>4.1.1</uber.version>
<commons.version>4.1</commons.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/neo4jh3/uber/Uberh3.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class Uberh3 {
public Transaction tx;

private final static int DEFAULT_H3_RESOLUTION = 9;
private final static String NEO4J_H3_VERSION = "5.19.1";
private final static String NEO4J_H3_VERSION = "5.23.0";

private static H3Core h3 = null;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/neo4jh3/Neo4jH3Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void should_return_hex_address() throws InterruptedException {
}

result = session.run("RETURN com.neo4jh3.version() AS value");
assertEquals("\"5.19.1\"", result.single().get("value").toString());
assertEquals("\"5.23.0\"", result.single().get("value").toString());

result = session.run("RETURN com.neo4jh3.cellToLatLngString('892830926cfffff') AS value");
assertEquals("\"37.564248,-122.325306\"", result.single().get("value").toString());
Expand Down

0 comments on commit 38ec85c

Please sign in to comment.