Skip to content

Commit 825ab94

Browse files
authored
Merge pull request #6508 from FlorentinD/post-2-2-4-release-branch
Post GDS 2.2.4 release
2 parents 3835b93 + d25bf98 commit 825ab94

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

README.adoc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ If you are using Neo4j Desktop you can simply add the Graph Data Science library
7575
|Neo4j 4.3.0 - 4.3.18
7676
|Neo4j 4.4.0 - 4.4.11
7777

78-
.2+<.^|GDS 2.2.x
78+
.3+<.^|GDS 2.2.x
7979
|Neo4j 4.3.15 - 4.3.21
80-
.2+.^|Java 11 & Java 17
80+
.3+.^|Java 11 & Java 17
8181
|Neo4j 4.4.9 - 4.4.14
82+
|Neo4j 5.1.0 - 5.2.0
8283

8384
|===
8485

@@ -123,7 +124,7 @@ For the most basic set of features, like graph loading and the graph representat
123124
<dependency>
124125
<groupId>org.neo4j.gds</groupId>
125126
<artifactId>core</artifactId>
126-
<version>2.2.3</version>
127+
<version>2.2.4</version>
127128
</dependency>
128129
----
129130

@@ -135,21 +136,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
135136
<dependency>
136137
<groupId>org.neo4j.gds</groupId>
137138
<artifactId>algo-common</artifactId>
138-
<version>2.2.3</version>
139+
<version>2.2.4</version>
139140
</dependency>
140141
141142
<!-- Contains the productized algorithms -->
142143
<dependency>
143144
<groupId>org.neo4j.gds</groupId>
144145
<artifactId>algo</artifactId>
145-
<version>2.2.3</version>
146+
<version>2.2.4</version>
146147
</dependency>
147148
148149
<!-- Contains some alpha algorithms -->
149150
<dependency>
150151
<groupId>org.neo4j.gds</groupId>
151152
<artifactId>alpha-algo</artifactId>
152-
<version>2.2.3</version>
153+
<version>2.2.4</version>
153154
</dependency>
154155
----
155156

@@ -161,28 +162,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
161162
<dependency>
162163
<groupId>org.neo4j.gds</groupId>
163164
<artifactId>proc-common</artifactId>
164-
<version>2.2.3</version>
165+
<version>2.2.4</version>
165166
</dependency>
166167
167168
<!-- Contains the productized algorithm procedures -->
168169
<dependency>
169170
<groupId>org.neo4j.gds</groupId>
170171
<artifactId>proc</artifactId>
171-
<version>2.2.3</version>
172+
<version>2.2.4</version>
172173
</dependency>
173174
174175
<!-- Contains some alpha algorithm procedures-->
175176
<dependency>
176177
<groupId>org.neo4j.gds</groupId>
177178
<artifactId>alpha-proc</artifactId>
178-
<version>2.2.3</version>
179+
<version>2.2.4</version>
179180
</dependency>
180181
181182
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
182183
<dependency>
183184
<groupId>org.neo4j.gds</groupId>
184185
<artifactId>write-services</artifactId>
185-
<version>2.2.3</version>
186+
<version>2.2.4</version>
186187
</dependency>
187188
----
188189

doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Time to upgrade!
1313
[opts=header]
1414
|===
1515
| Neo4j Graph Data Science | Neo4j version
16-
.3+<.^|`2.2`
16+
.4+<.^|`2.2`
17+
| `5.2`
1718
| `5.1`
1819
| `4.4`, at least `4.4.9`
1920
| `4.3`, at least `4.3.15`

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.4"
30+
| "2.2.5"
3131
|===
3232
--
3333

gradle/version.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
gdsBaseVersion = '2.2.4'
2+
gdsBaseVersion = '2.2.5'
33
gdsAuraVersion = '4'
44

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

0 commit comments

Comments
 (0)