Skip to content

Commit 6d6ee79

Browse files
committed
Bump patch version
1 parent 0e46d43 commit 6d6ee79

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
@@ -81,7 +81,7 @@ For the most basic set of features, like graph loading and the graph representat
8181
<dependency>
8282
<groupId>org.neo4j.gds</groupId>
8383
<artifactId>core</artifactId>
84-
<version>2.6.1</version>
84+
<version>2.6.2</version>
8585
</dependency>
8686
----
8787

@@ -93,21 +93,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
9393
<dependency>
9494
<groupId>org.neo4j.gds</groupId>
9595
<artifactId>algo-common</artifactId>
96-
<version>2.6.1</version>
96+
<version>2.6.2</version>
9797
</dependency>
9898
9999
<!-- Contains the productized algorithms -->
100100
<dependency>
101101
<groupId>org.neo4j.gds</groupId>
102102
<artifactId>algo</artifactId>
103-
<version>2.6.1</version>
103+
<version>2.6.2</version>
104104
</dependency>
105105
106106
<!-- Contains some alpha algorithms -->
107107
<dependency>
108108
<groupId>org.neo4j.gds</groupId>
109109
<artifactId>alpha-algo</artifactId>
110-
<version>2.6.1</version>
110+
<version>2.6.2</version>
111111
</dependency>
112112
----
113113

@@ -119,28 +119,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
119119
<dependency>
120120
<groupId>org.neo4j.gds</groupId>
121121
<artifactId>proc-common</artifactId>
122-
<version>2.6.1</version>
122+
<version>2.6.2</version>
123123
</dependency>
124124
125125
<!-- Contains the productized algorithm procedures -->
126126
<dependency>
127127
<groupId>org.neo4j.gds</groupId>
128128
<artifactId>proc</artifactId>
129-
<version>2.6.1</version>
129+
<version>2.6.2</version>
130130
</dependency>
131131
132132
<!-- Contains some alpha algorithm procedures-->
133133
<dependency>
134134
<groupId>org.neo4j.gds</groupId>
135135
<artifactId>alpha-proc</artifactId>
136-
<version>2.6.1</version>
136+
<version>2.6.2</version>
137137
</dependency>
138138
139139
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
140140
<dependency>
141141
<groupId>org.neo4j.gds</groupId>
142142
<artifactId>open-write-services</artifactId>
143-
<version>2.6.1</version>
143+
<version>2.6.2</version>
144144
</dependency>
145145
----
146146

examples/pregel-bootstrap/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77

88
ext {
99
// Make sure these are the same as your installation of GDS and Neo4j
10-
gdsVersion = '2.6.1'
11-
neo4jVersion = '5.16.0'
10+
gdsVersion = '2.6.2'
11+
neo4jVersion = '5.18.0'
1212

1313
// Necessary to generate value classes for Pregel configs
1414
immutablesVersion = '2.8.1'

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.6.2'
2+
gdsBaseVersion = '2.6.3'
33
gdsAuraVersion = '57'
44
gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
55
}

0 commit comments

Comments
 (0)