Skip to content

Commit d2947eb

Browse files
committed
Prepare GDS for the next release
1 parent f288e6e commit d2947eb

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

README.adoc

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ When installing GDS manually, please refer to the below compatibility matrix:
2626
.Compatibility matrix (italicized version is in development)
2727
|===
2828
|GDS version | Neo4j version | Java Version
29-
.3+<.^|_GDS 2.10.x (preview)_
29+
.3+<.^|_GDS 2.11.x (preview)_
30+
|Neo4j 5.25.0
31+
.3+.^|Java 21 & Java 17
32+
|Neo4j 5.24.0
33+
|Neo4j 5.23.0
34+
.3+<.^|GDS 2.10.x
3035
|Neo4j 5.24.0
3136
.3+.^|Java 21 & Java 17
3237
|Neo4j 5.23.0
@@ -111,7 +116,7 @@ For the most basic set of features, like graph loading and the graph representat
111116
<dependency>
112117
<groupId>org.neo4j.gds</groupId>
113118
<artifactId>core</artifactId>
114-
<version>2.9.0</version>
119+
<version>2.10.0</version>
115120
</dependency>
116121
----
117122

@@ -123,21 +128,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
123128
<dependency>
124129
<groupId>org.neo4j.gds</groupId>
125130
<artifactId>algo-common</artifactId>
126-
<version>2.9.0</version>
131+
<version>2.10.0</version>
127132
</dependency>
128133
129134
<!-- Contains the productized algorithms -->
130135
<dependency>
131136
<groupId>org.neo4j.gds</groupId>
132137
<artifactId>algo</artifactId>
133-
<version>2.9.0</version>
138+
<version>2.10.0</version>
134139
</dependency>
135140
136141
<!-- Contains some alpha algorithms -->
137142
<dependency>
138143
<groupId>org.neo4j.gds</groupId>
139144
<artifactId>alpha-algo</artifactId>
140-
<version>2.9.0</version>
145+
<version>2.10.0</version>
141146
</dependency>
142147
----
143148

@@ -149,28 +154,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
149154
<dependency>
150155
<groupId>org.neo4j.gds</groupId>
151156
<artifactId>proc-common</artifactId>
152-
<version>2.9.0</version>
157+
<version>2.10.0</version>
153158
</dependency>
154159
155160
<!-- Contains the productized algorithm procedures -->
156161
<dependency>
157162
<groupId>org.neo4j.gds</groupId>
158163
<artifactId>proc</artifactId>
159-
<version>2.9.0</version>
164+
<version>2.10.0</version>
160165
</dependency>
161166
162167
<!-- Contains some alpha algorithm procedures-->
163168
<dependency>
164169
<groupId>org.neo4j.gds</groupId>
165170
<artifactId>alpha-proc</artifactId>
166-
<version>2.9.0</version>
171+
<version>2.10.0</version>
167172
</dependency>
168173
169174
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
170175
<dependency>
171176
<groupId>org.neo4j.gds</groupId>
172177
<artifactId>open-write-services</artifactId>
173-
<version>2.9.0</version>
178+
<version>2.10.0</version>
174179
</dependency>
175180
----
176181

examples/pregel-bootstrap/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ plugins {
77

88
ext {
99
// Make sure these are the same as your installation of GDS and Neo4j
10-
gdsVersion = '2.9.0'
11-
neo4jVersion = '5.23.0'
10+
gdsVersion = '2.10.0'
11+
neo4jVersion = '5.24.0'
1212

1313
// Necessary to generate value classes for Pregel configs
14-
immutablesVersion = '2.8.1'
14+
immutablesVersion = '2.10.1'
1515

1616
// Necessary compile-time dependency for code generation
17-
jetbrainsAnnotations = '18.0.0'
17+
jetbrainsAnnotations = '24.1.0'
1818

1919
// Test dependency versions
20-
junit5Version = '5.7.1'
20+
junit5Version = '5.10.3'
2121
}
2222

2323
description = 'Graph Data Science :: Pregel Bootstrap'

gradle/version.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
gdsBaseVersion = '2.10.1'
2+
gdsBaseVersion = '2.11.0'
33
gdsAuraDSVersion = '77'
44
gdsVersion = rootProject.hasProperty('aurads') ? gdsBaseVersion + "+${gdsAuraDSVersion}" : gdsBaseVersion
55
}

0 commit comments

Comments
 (0)