Skip to content

Commit 14ddedc

Browse files
committed
Update versions after 2.3.3 release
1 parent fe5d867 commit 14ddedc

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

README.adoc

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,15 @@ If you are using Neo4j Desktop you can simply add the Graph Data Science library
8383
|Neo4j 5.2.0
8484
|Neo4j 5.3.0
8585
|Neo4j 5.4.0
86-
.7+<.^|GDS 2.3.x
86+
.8+<.^|GDS 2.3.x
8787
|Neo4j 4.4.9 - 4.4.19
8888
|Neo4j 5.1.0
8989
|Neo4j 5.2.0
9090
|Neo4j 5.3.0
9191
|Neo4j 5.4.0
9292
|Neo4j 5.5.0
9393
|Neo4j 5.6.0
94+
|Neo4j 5.7.0
9495
|===
9596

9697
NOTE: Preview releases are not automatically made available in Neo4j Desktop. They need to be installed manually.
@@ -134,7 +135,7 @@ For the most basic set of features, like graph loading and the graph representat
134135
<dependency>
135136
<groupId>org.neo4j.gds</groupId>
136137
<artifactId>core</artifactId>
137-
<version>2.3.2</version>
138+
<version>2.3.3</version>
138139
</dependency>
139140
----
140141

@@ -146,21 +147,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
146147
<dependency>
147148
<groupId>org.neo4j.gds</groupId>
148149
<artifactId>algo-common</artifactId>
149-
<version>2.3.2</version>
150+
<version>2.3.3</version>
150151
</dependency>
151152
152153
<!-- Contains the productized algorithms -->
153154
<dependency>
154155
<groupId>org.neo4j.gds</groupId>
155156
<artifactId>algo</artifactId>
156-
<version>2.3.2</version>
157+
<version>2.3.3</version>
157158
</dependency>
158159
159160
<!-- Contains some alpha algorithms -->
160161
<dependency>
161162
<groupId>org.neo4j.gds</groupId>
162163
<artifactId>alpha-algo</artifactId>
163-
<version>2.3.2</version>
164+
<version>2.3.3</version>
164165
</dependency>
165166
----
166167

@@ -172,28 +173,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
172173
<dependency>
173174
<groupId>org.neo4j.gds</groupId>
174175
<artifactId>proc-common</artifactId>
175-
<version>2.3.2</version>
176+
<version>2.3.3</version>
176177
</dependency>
177178
178179
<!-- Contains the productized algorithm procedures -->
179180
<dependency>
180181
<groupId>org.neo4j.gds</groupId>
181182
<artifactId>proc</artifactId>
182-
<version>2.3.2</version>
183+
<version>2.3.3</version>
183184
</dependency>
184185
185186
<!-- Contains some alpha algorithm procedures-->
186187
<dependency>
187188
<groupId>org.neo4j.gds</groupId>
188189
<artifactId>alpha-proc</artifactId>
189-
<version>2.3.2</version>
190+
<version>2.3.3</version>
190191
</dependency>
191192
192193
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
193194
<dependency>
194195
<groupId>org.neo4j.gds</groupId>
195196
<artifactId>write-services</artifactId>
196-
<version>2.3.2</version>
197+
<version>2.3.3</version>
197198
</dependency>
198199
----
199200

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.3.3"
30+
| "2.3.4"
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.3.3'
10+
gdsVersion = '2.3.4'
1111
neo4jVersion = '5.1.0'
1212

1313
// Necessary to generate value classes for Pregel configs

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.3.3'
2+
gdsBaseVersion = '2.3.4'
33
gdsAuraVersion = '17'
44

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

0 commit comments

Comments
 (0)