Skip to content

Commit 5adf8c0

Browse files
1.1.4 post-release actions
Co-Authored-By: Paul Horn <paul.horn@neotechnology.com>
1 parent 57a9c5f commit 5adf8c0

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

doc/asciidoc/management-ops/utility-functions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RETURN gds.version() AS version
2222
[opts="header",cols="1"]
2323
|===
2424
| version
25-
| "1.1.4"
25+
| "1.1.5"
2626
|===
2727
--
2828

examples/PregelK1Coloring/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ plugins {
55
}
66

77
ext {
8-
gdsVersion = '1.1.0-alpha01'
8+
gdsVersion = '1.1.4'
9+
neo4jVersion = '3.5.20'
910
}
1011

1112
description = 'Graph Data Science :: Pregel Training'
@@ -19,7 +20,7 @@ dependencies {
1920

2021
// We also need to depend on Neo4j itself for our tests.
2122
// Usually, Neo4j is available when we are running as a plugin.
22-
compileOnly 'org.neo4j:neo4j:3.5.16'
23+
compileOnly "org.neo4j:neo4j:$neo4jVersion"
2324

2425
// We need an annotation processor for our K1 configuration
2526
annotationProcessor "org.neo4j.gds:config-generator:$gdsVersion"

gradle/version.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ext {
22
gdsGroup = 'org.neo4j.gds'
3-
gdsVersion = '1.1.4'
3+
gdsVersion = '1.1.5'
44
}

proc/common/src/main/java/org/neo4j/graphalgo/functions/VersionFunc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ public class VersionFunc {
2727
@UserFunction("gds.version")
2828
@Description("RETURN gds.version() | Return the installed graph data science library version.")
2929
public String version() {
30-
return "1.1.4";
30+
return "1.1.5";
3131
}
3232
}

0 commit comments

Comments
 (0)