Skip to content

Commit abeee43

Browse files
Post release on 2.6
1 parent 1cca051 commit abeee43

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
@@ -84,7 +84,7 @@ For the most basic set of features, like graph loading and the graph representat
8484
<dependency>
8585
<groupId>org.neo4j.gds</groupId>
8686
<artifactId>core</artifactId>
87-
<version>2.6.8</version>
87+
<version>2.6.9</version>
8888
</dependency>
8989
----
9090

@@ -96,21 +96,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
9696
<dependency>
9797
<groupId>org.neo4j.gds</groupId>
9898
<artifactId>algo-common</artifactId>
99-
<version>2.6.8</version>
99+
<version>2.6.9</version>
100100
</dependency>
101101
102102
<!-- Contains the productized algorithms -->
103103
<dependency>
104104
<groupId>org.neo4j.gds</groupId>
105105
<artifactId>algo</artifactId>
106-
<version>2.6.8</version>
106+
<version>2.6.9</version>
107107
</dependency>
108108
109109
<!-- Contains some alpha algorithms -->
110110
<dependency>
111111
<groupId>org.neo4j.gds</groupId>
112112
<artifactId>alpha-algo</artifactId>
113-
<version>2.6.8</version>
113+
<version>2.6.9</version>
114114
</dependency>
115115
----
116116

@@ -122,28 +122,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
122122
<dependency>
123123
<groupId>org.neo4j.gds</groupId>
124124
<artifactId>proc-common</artifactId>
125-
<version>2.6.8</version>
125+
<version>2.6.9</version>
126126
</dependency>
127127
128128
<!-- Contains the productized algorithm procedures -->
129129
<dependency>
130130
<groupId>org.neo4j.gds</groupId>
131131
<artifactId>proc</artifactId>
132-
<version>2.6.8</version>
132+
<version>2.6.9</version>
133133
</dependency>
134134
135135
<!-- Contains some alpha algorithm procedures-->
136136
<dependency>
137137
<groupId>org.neo4j.gds</groupId>
138138
<artifactId>alpha-proc</artifactId>
139-
<version>2.6.8</version>
139+
<version>2.6.9</version>
140140
</dependency>
141141
142142
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
143143
<dependency>
144144
<groupId>org.neo4j.gds</groupId>
145145
<artifactId>open-write-services</artifactId>
146-
<version>2.6.8</version>
146+
<version>2.6.9</version>
147147
</dependency>
148148
----
149149

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.8'
10+
gdsVersion = '2.6.9'
1111
neo4jVersion = '4.4.41'
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.9'
2+
gdsBaseVersion = '2.6.10'
33
gdsAuraVersion = '61'
44
gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
55
}

0 commit comments

Comments
 (0)