Skip to content

Commit

Permalink
Update version in README
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Horn <[email protected]>
  • Loading branch information
Mats-SX and knutwalker committed Oct 1, 2024
1 parent e55c2c5 commit 9404edc
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,15 @@ When installing GDS manually, please refer to the below compatibility matrix:
.Compatibility matrix (italicized version is in development)
|===
|GDS version | Neo4j version | Java Version
.3+<.^|_GDS 2.11.x (preview)_
.3+<.^|_GDS 2.12.x (preview)_
|Neo4j 5.25.0
.3+.^|Java 21 & Java 17
|Neo4j 5.24.0
|Neo4j 5.23.0
.2+<.^|GDS 2.11.x
|Neo4j 5.24.0
.2+.^|Java 21 & Java 17
|Neo4j 5.23.0
.3+<.^|GDS 2.10.x
|Neo4j 5.24.0
.3+.^|Java 21 & Java 17
Expand Down Expand Up @@ -116,7 +120,7 @@ For the most basic set of features, like graph loading and the graph representat
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>core</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
----

Expand All @@ -128,21 +132,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo-common</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<!-- Contains the productized algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<!-- Contains some alpha algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-algo</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
----

Expand All @@ -154,28 +158,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>proc-common</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<!-- Contains the productized algorithm procedures -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>proc</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<!-- Contains some alpha algorithm procedures-->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-proc</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>open-write-services</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
----

Expand Down

0 comments on commit 9404edc

Please sign in to comment.