Skip to content

Commit

Permalink
Merge pull request #8294 from vnickolov/post-release-2.5.2-2.5
Browse files Browse the repository at this point in the history
Post-release actions for GDS 2.5.2
  • Loading branch information
vnickolov authored Oct 27, 2023
2 parents 2c8b104 + ab69fd0 commit bfee902
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,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.5.1</version>
<version>2.5.2</version>
</dependency>
----

Expand All @@ -121,21 +121,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.5.1</version>
<version>2.5.2</version>
</dependency>
<!-- Contains the productized algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo</artifactId>
<version>2.5.1</version>
<version>2.5.2</version>
</dependency>
<!-- Contains some alpha algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-algo</artifactId>
<version>2.5.1</version>
<version>2.5.2</version>
</dependency>
----

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

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.5.1'
gdsVersion = '2.5.2'
neo4jVersion = '5.13.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.5.2'
gdsBaseVersion = '2.5.3'
gdsAuraVersion = '42'

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

0 comments on commit bfee902

Please sign in to comment.