Skip to content

Commit 047507d

Browse files
committed
Update Neo4j 5.26.1 GDS 2.13
1 parent f71cd3c commit 047507d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ When installing GDS manually, please refer to the below compatibility matrix:
2727
|===
2828
|GDS version | Neo4j version | Java Version
2929
.1+<.^|GDS 2.13.x
30-
|Neo4j 5.26.0
30+
|Neo4j 5.26.1
3131
.1+.^|Java 21 & Java 17
3232
.2+<.^|GDS 2.12.0
3333
|Neo4j 5.25.1

examples/pregel-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
ext {
99
// Make sure these are the same as your installation of GDS and Neo4j
1010
gdsVersion = '2.13.2'
11-
neo4jVersion = '5.26.0'
11+
neo4jVersion = '5.26.1'
1212

1313
// Necessary to generate value classes for Pregel configs
1414
immutablesVersion = '2.10.1'

neo4j-adapter/src/test/java/org/neo4j/gds/compat/Neo4jVersionLookupTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Neo4jVersionLookupTest {
3232

3333
@Test
3434
void testParse() {
35-
assertThat(Neo4jVersionLookup.parse("5.26.0", "5.26.0"))
35+
assertThat(Neo4jVersionLookup.parse("5.26.1", "5.26.1"))
3636
.returns(new Neo4jVersion.MajorMinor(5, 26), Neo4jVersion::semanticVersion)
3737
.returns(true, Neo4jVersion::isSupported);
3838
}

0 commit comments

Comments
 (0)