Skip to content

Commit

Permalink
Post 2.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentinD committed Sep 14, 2023
1 parent edd1242 commit 025bd8a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,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.4.5</version>
<version>2.4.6</version>
</dependency>
----

Expand All @@ -108,21 +108,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.4.5</version>
<version>2.4.6</version>
</dependency>
<!-- Contains the productized algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo</artifactId>
<version>2.4.5</version>
<version>2.4.6</version>
</dependency>
<!-- Contains some alpha algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-algo</artifactId>
<version>2.4.5</version>
<version>2.4.6</version>
</dependency>
----

Expand All @@ -134,28 +134,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.4.5</version>
<version>2.4.6</version>
</dependency>
<!-- Contains the productized algorithm procedures -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>proc</artifactId>
<version>2.4.5</version>
<version>2.4.6</version>
</dependency>
<!-- Contains some alpha algorithm procedures-->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-proc</artifactId>
<version>2.4.5</version>
<version>2.4.6</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.4.5</version>
<version>2.4.6</version>
</dependency>
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RETURN gds.version() AS version
[opts="header"]
|===
| version
| "2.4.6"
| "2.4.7"
|===
--

Expand Down
2 changes: 1 addition & 1 deletion examples/pregel-bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

ext {
// Make sure these are the same as your installation of GDS and Neo4j
gdsVersion = '2.4.5'
gdsVersion = '2.4.6'
neo4jVersion = '5.10.0'

// Necessary to generate value classes for Pregel configs
Expand Down
2 changes: 1 addition & 1 deletion gradle/version.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
gdsBaseVersion = '2.4.6'
gdsBaseVersion = '2.4.7'
gdsAuraVersion = '35'

gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
Expand Down

0 comments on commit 025bd8a

Please sign in to comment.