Skip to content

Commit 85a5506

Browse files
committed
GDS 2.12.0 is released
1 parent 0fcb750 commit 85a5506

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
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-
.2+<.^|_GDS 2.12.x (preview)_
29+
.3+<.^|_GDS 2.13.x (preview)_
30+
|Neo4j 5.26.0
31+
.3+.^|Java 21 & Java 17
32+
|Neo4j 5.25.0
33+
|Neo4j 5.24.0
34+
.2+<.^|GDS 2.12.0
3035
|Neo4j 5.25.0
3136
.2+.^|Java 21 & Java 17
3237
|Neo4j 5.24.0
@@ -119,7 +124,7 @@ For the most basic set of features, like graph loading and the graph representat
119124
<dependency>
120125
<groupId>org.neo4j.gds</groupId>
121126
<artifactId>core</artifactId>
122-
<version>2.12.0</version>
127+
<version>2.13.0</version>
123128
</dependency>
124129
----
125130

@@ -131,21 +136,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
131136
<dependency>
132137
<groupId>org.neo4j.gds</groupId>
133138
<artifactId>algo-common</artifactId>
134-
<version>2.12.0</version>
139+
<version>2.13.0</version>
135140
</dependency>
136141
137142
<!-- Contains the productized algorithms -->
138143
<dependency>
139144
<groupId>org.neo4j.gds</groupId>
140145
<artifactId>algo</artifactId>
141-
<version>2.12.0</version>
146+
<version>2.13.0</version>
142147
</dependency>
143148
144149
<!-- Contains some alpha algorithms -->
145150
<dependency>
146151
<groupId>org.neo4j.gds</groupId>
147152
<artifactId>alpha-algo</artifactId>
148-
<version>2.12.0</version>
153+
<version>2.13.0</version>
149154
</dependency>
150155
----
151156

@@ -157,28 +162,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
157162
<dependency>
158163
<groupId>org.neo4j.gds</groupId>
159164
<artifactId>proc-common</artifactId>
160-
<version>2.12.0</version>
165+
<version>2.13.0</version>
161166
</dependency>
162167
163168
<!-- Contains the productized algorithm procedures -->
164169
<dependency>
165170
<groupId>org.neo4j.gds</groupId>
166171
<artifactId>proc</artifactId>
167-
<version>2.12.0</version>
172+
<version>2.13.0</version>
168173
</dependency>
169174
170175
<!-- Contains some alpha algorithm procedures-->
171176
<dependency>
172177
<groupId>org.neo4j.gds</groupId>
173178
<artifactId>alpha-proc</artifactId>
174-
<version>2.12.0</version>
179+
<version>2.13.0</version>
175180
</dependency>
176181
177182
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
178183
<dependency>
179184
<groupId>org.neo4j.gds</groupId>
180185
<artifactId>open-write-services</artifactId>
181-
<version>2.12.0</version>
186+
<version>2.13.0</version>
182187
</dependency>
183188
----
184189

doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ If your version of GDS or Neo4j is not listed in the matrix, you should upgrade.
1010
[opts=header]
1111
|===
1212
| Neo4j version | Neo4j Graph Data Science
13-
| `5.25` | `2.12`
14-
| `5.24` | `2.12`, `2.11`, `2.10`
13+
| `5.25` | `2.13`, `2.12`
14+
| `5.24` | `2.13`, `2.12`, `2.11`, `2.10`
1515
| `5.23` | `2.11`, `2.10`, `2.9`
1616
| `5.22` | `2.10`, `2.9`, `2.8`
1717
| `5.21` | `2.9`, `2.8`, `2.7`

examples/pregel-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
ext {
99
// Make sure these are the same as your installation of GDS and Neo4j
10-
gdsVersion = '2.11.0'
10+
gdsVersion = '2.12.0'
1111
neo4jVersion = '5.24.0'
1212

1313
// Necessary to generate value classes for Pregel configs

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.12.0'
2+
gdsBaseVersion = '2.13.0'
33
gdsAuraDSVersion = '79'
44
gdsVersion = rootProject.hasProperty('aurads') ? gdsBaseVersion + "+${gdsAuraDSVersion}" : gdsBaseVersion
55
}

0 commit comments

Comments
 (0)