Skip to content

Commit 931e747

Browse files
post 2.5.3 actions on 2.5
1 parent 3e87502 commit 931e747

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ For the most basic set of features, like graph loading and the graph representat
109109
<dependency>
110110
<groupId>org.neo4j.gds</groupId>
111111
<artifactId>core</artifactId>
112-
<version>2.5.2</version>
112+
<version>2.5.3</version>
113113
</dependency>
114114
----
115115

@@ -121,21 +121,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
121121
<dependency>
122122
<groupId>org.neo4j.gds</groupId>
123123
<artifactId>algo-common</artifactId>
124-
<version>2.5.2</version>
124+
<version>2.5.3</version>
125125
</dependency>
126126
127127
<!-- Contains the productized algorithms -->
128128
<dependency>
129129
<groupId>org.neo4j.gds</groupId>
130130
<artifactId>algo</artifactId>
131-
<version>2.5.2</version>
131+
<version>2.5.3</version>
132132
</dependency>
133133
134134
<!-- Contains some alpha algorithms -->
135135
<dependency>
136136
<groupId>org.neo4j.gds</groupId>
137137
<artifactId>alpha-algo</artifactId>
138-
<version>2.5.2</version>
138+
<version>2.5.3</version>
139139
</dependency>
140140
----
141141

@@ -147,28 +147,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
147147
<dependency>
148148
<groupId>org.neo4j.gds</groupId>
149149
<artifactId>proc-common</artifactId>
150-
<version>2.5.2</version>
150+
<version>2.5.3</version>
151151
</dependency>
152152
153153
<!-- Contains the productized algorithm procedures -->
154154
<dependency>
155155
<groupId>org.neo4j.gds</groupId>
156156
<artifactId>proc</artifactId>
157-
<version>2.5.2</version>
157+
<version>2.5.3</version>
158158
</dependency>
159159
160160
<!-- Contains some alpha algorithm procedures-->
161161
<dependency>
162162
<groupId>org.neo4j.gds</groupId>
163163
<artifactId>alpha-proc</artifactId>
164-
<version>2.5.2</version>
164+
<version>2.5.3</version>
165165
</dependency>
166166
167167
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
168168
<dependency>
169169
<groupId>org.neo4j.gds</groupId>
170170
<artifactId>open-write-services</artifactId>
171-
<version>2.5.2</version>
171+
<version>2.5.3</version>
172172
</dependency>
173173
----
174174

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.5.2'
10+
gdsVersion = '2.5.3'
1111
neo4jVersion = '5.13.0'
1212

1313
// Necessary to generate value classes for Pregel configs

gradle/version.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ext {
2-
gdsBaseVersion = '2.5.3'
3-
gdsAuraVersion = '43'
2+
gdsBaseVersion = '2.5.4'
3+
gdsAuraVersion = '44'
44

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

0 commit comments

Comments
 (0)