Skip to content

Commit 1d23a2e

Browse files
committed
Update Neo4j 5.26.7 for GDS2.13
1 parent 907db6d commit 1d23a2e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.4'
11-
neo4jVersion = '5.26.6'
11+
neo4jVersion = '5.26.7'
1212

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

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ext {
22
ver = [
33
'log4j' : '2.20.0',
4-
'neo4j' : '5.26.6',
4+
'neo4j' : '5.26.7',
55
'scala' : '2.13.11',
66
'shiro' : '2.0.1',
77
]

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.6", "5.26.6"))
35+
assertThat(Neo4jVersionLookup.parse("5.26.7", "5.26.7"))
3636
.returns(new Neo4jVersion.MajorMinor(5, 26), Neo4jVersion::semanticVersion)
3737
.returns(true, Neo4jVersion::isSupported);
3838
}

0 commit comments

Comments
 (0)