@@ -23,10 +23,10 @@ If you are using Neo4j Desktop you can simply add the Graph Data Science library
2323
2424When installing GDS manually, please refer to the below compatibility matrix:
2525
26- .Compatibility matrix (italicized version is in development)
26+ .Compatibility matrix
2727|===
2828|GDS version | Neo4j version | Java Version
29- .1+<.^|_GDS 2.13.x (preview)_
29+ .1+<.^|GDS 2.13.x
3030|Neo4j 5.26.0
3131.1+.^|Java 21 & Java 17
3232.2+<.^|GDS 2.12.0
@@ -122,7 +122,7 @@ For the most basic set of features, like graph loading and the graph representat
122122<dependency>
123123 <groupId>org.neo4j.gds</groupId>
124124 <artifactId>core</artifactId>
125- <version>2.13.0 </version>
125+ <version>2.13.2 </version>
126126</dependency>
127127----
128128
@@ -134,21 +134,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
134134<dependency>
135135 <groupId>org.neo4j.gds</groupId>
136136 <artifactId>algo-common</artifactId>
137- <version>2.13.0 </version>
137+ <version>2.13.2 </version>
138138</dependency>
139139
140140<!-- Contains the productized algorithms -->
141141<dependency>
142142 <groupId>org.neo4j.gds</groupId>
143143 <artifactId>algo</artifactId>
144- <version>2.13.0 </version>
144+ <version>2.13.2 </version>
145145</dependency>
146146
147147<!-- Contains some alpha algorithms -->
148148<dependency>
149149 <groupId>org.neo4j.gds</groupId>
150150 <artifactId>alpha-algo</artifactId>
151- <version>2.13.0 </version>
151+ <version>2.13.2 </version>
152152</dependency>
153153----
154154
@@ -160,28 +160,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
160160<dependency>
161161 <groupId>org.neo4j.gds</groupId>
162162 <artifactId>proc-common</artifactId>
163- <version>2.13.0 </version>
163+ <version>2.13.2 </version>
164164</dependency>
165165
166166<!-- Contains the productized algorithm procedures -->
167167<dependency>
168168 <groupId>org.neo4j.gds</groupId>
169169 <artifactId>proc</artifactId>
170- <version>2.13.0 </version>
170+ <version>2.13.2 </version>
171171</dependency>
172172
173173<!-- Contains some alpha algorithm procedures-->
174174<dependency>
175175 <groupId>org.neo4j.gds</groupId>
176176 <artifactId>alpha-proc</artifactId>
177- <version>2.13.0 </version>
177+ <version>2.13.2 </version>
178178</dependency>
179179
180180<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
181181<dependency>
182182 <groupId>org.neo4j.gds</groupId>
183183 <artifactId>open-write-services</artifactId>
184- <version>2.13.0 </version>
184+ <version>2.13.2 </version>
185185</dependency>
186186----
187187
0 commit comments