Skip to content

Commit 59a7dcd

Browse files
committed
post 2.6.1 releaes changes
1 parent 34380f9 commit 59a7dcd

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For the most basic set of features, like graph loading and the graph representat
8080
<dependency>
8181
<groupId>org.neo4j.gds</groupId>
8282
<artifactId>core</artifactId>
83-
<version>2.6.0</version>
83+
<version>2.6.1</version>
8484
</dependency>
8585
----
8686

@@ -92,21 +92,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
9292
<dependency>
9393
<groupId>org.neo4j.gds</groupId>
9494
<artifactId>algo-common</artifactId>
95-
<version>2.6.0</version>
95+
<version>2.6.1</version>
9696
</dependency>
9797
9898
<!-- Contains the productized algorithms -->
9999
<dependency>
100100
<groupId>org.neo4j.gds</groupId>
101101
<artifactId>algo</artifactId>
102-
<version>2.6.0</version>
102+
<version>2.6.1</version>
103103
</dependency>
104104
105105
<!-- Contains some alpha algorithms -->
106106
<dependency>
107107
<groupId>org.neo4j.gds</groupId>
108108
<artifactId>alpha-algo</artifactId>
109-
<version>2.6.0</version>
109+
<version>2.6.1</version>
110110
</dependency>
111111
----
112112

@@ -118,28 +118,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
118118
<dependency>
119119
<groupId>org.neo4j.gds</groupId>
120120
<artifactId>proc-common</artifactId>
121-
<version>2.6.0</version>
121+
<version>2.6.1</version>
122122
</dependency>
123123
124124
<!-- Contains the productized algorithm procedures -->
125125
<dependency>
126126
<groupId>org.neo4j.gds</groupId>
127127
<artifactId>proc</artifactId>
128-
<version>2.6.0</version>
128+
<version>2.6.1</version>
129129
</dependency>
130130
131131
<!-- Contains some alpha algorithm procedures-->
132132
<dependency>
133133
<groupId>org.neo4j.gds</groupId>
134134
<artifactId>alpha-proc</artifactId>
135-
<version>2.6.0</version>
135+
<version>2.6.1</version>
136136
</dependency>
137137
138138
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
139139
<dependency>
140140
<groupId>org.neo4j.gds</groupId>
141141
<artifactId>open-write-services</artifactId>
142-
<version>2.6.0</version>
142+
<version>2.6.1</version>
143143
</dependency>
144144
----
145145

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.6.0'
10+
gdsVersion = '2.6.1'
1111
neo4jVersion = '5.16.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.6.1'
2+
gdsBaseVersion = '2.6.2'
33
gdsAuraVersion = '55'
44
gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
55
}

0 commit comments

Comments
 (0)