Skip to content

Commit 38ec85c

Browse files
committed
Updated pom.xml for 5.23.0
Updated for Neo4j 5.23.0
1 parent 6b6f7f6 commit 38ec85c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
<groupId>com.neo4jh3</groupId>
88
<artifactId>neo4jh3</artifactId>
9-
<version>5.19.1</version>
9+
<version>5.23.0</version>
1010

1111
<properties>
12-
<neo4j.version>5.19.0</neo4j.version>
12+
<neo4j.version>5.23.0</neo4j.version>
1313
<lang3.version>3.13.0</lang3.version>
1414
<uber.version>4.1.1</uber.version>
1515
<commons.version>4.1</commons.version>

src/main/java/com/neo4jh3/uber/Uberh3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Uberh3 {
3333
public Transaction tx;
3434

3535
private final static int DEFAULT_H3_RESOLUTION = 9;
36-
private final static String NEO4J_H3_VERSION = "5.19.1";
36+
private final static String NEO4J_H3_VERSION = "5.23.0";
3737

3838
private static H3Core h3 = null;
3939

src/test/java/com/neo4jh3/Neo4jH3Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void should_return_hex_address() throws InterruptedException {
110110
}
111111

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

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

0 commit comments

Comments
 (0)