Skip to content

Commit 6be9d9e

Browse files
IoannisPanagiotasjjaderberg
authored andcommitted
Post Release 225 branch
1 parent 269af0d commit 6be9d9e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ For the most basic set of features, like graph loading and the graph representat
125125
<dependency>
126126
<groupId>org.neo4j.gds</groupId>
127127
<artifactId>core</artifactId>
128-
<version>2.2.4</version>
128+
<version>2.2.5</version>
129129
</dependency>
130130
----
131131

@@ -137,21 +137,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
137137
<dependency>
138138
<groupId>org.neo4j.gds</groupId>
139139
<artifactId>algo-common</artifactId>
140-
<version>2.2.4</version>
140+
<version>2.2.5</version>
141141
</dependency>
142142
143143
<!-- Contains the productized algorithms -->
144144
<dependency>
145145
<groupId>org.neo4j.gds</groupId>
146146
<artifactId>algo</artifactId>
147-
<version>2.2.4</version>
147+
<version>2.2.5</version>
148148
</dependency>
149149
150150
<!-- Contains some alpha algorithms -->
151151
<dependency>
152152
<groupId>org.neo4j.gds</groupId>
153153
<artifactId>alpha-algo</artifactId>
154-
<version>2.2.4</version>
154+
<version>2.2.5</version>
155155
</dependency>
156156
----
157157

@@ -163,28 +163,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
163163
<dependency>
164164
<groupId>org.neo4j.gds</groupId>
165165
<artifactId>proc-common</artifactId>
166-
<version>2.2.4</version>
166+
<version>2.2.5</version>
167167
</dependency>
168168
169169
<!-- Contains the productized algorithm procedures -->
170170
<dependency>
171171
<groupId>org.neo4j.gds</groupId>
172172
<artifactId>proc</artifactId>
173-
<version>2.2.4</version>
173+
<version>2.2.5</version>
174174
</dependency>
175175
176176
<!-- Contains some alpha algorithm procedures-->
177177
<dependency>
178178
<groupId>org.neo4j.gds</groupId>
179179
<artifactId>alpha-proc</artifactId>
180-
<version>2.2.4</version>
180+
<version>2.2.5</version>
181181
</dependency>
182182
183183
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
184184
<dependency>
185185
<groupId>org.neo4j.gds</groupId>
186186
<artifactId>write-services</artifactId>
187-
<version>2.2.4</version>
187+
<version>2.2.5</version>
188188
</dependency>
189189
----
190190

doc/modules/ROOT/pages/management-ops/utility-functions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RETURN gds.version() AS version
2727
[opts="header"]
2828
|===
2929
| version
30-
| "2.2.5"
30+
| "2.2.6"
3131
|===
3232
--
3333

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.2.4'
10+
gdsVersion = '2.2.5'
1111
neo4jVersion = '5.1.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.2.5'
3-
gdsAuraVersion = '5'
2+
gdsBaseVersion = '2.2.6'
3+
gdsAuraVersion = '6'
44

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

0 commit comments

Comments
 (0)