Skip to content

Commit f102a2d

Browse files
committed
Set version 1.1.0-alpha02
1 parent 120436c commit f102a2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

+1-1
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.0"
25+
| "1.1.0-alpha02"
2626
|===
2727
--
2828

gradle/version.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ext {
22
gdsGroup = 'org.neo4j.gds'
3-
gdsVersion = '1.1.0'
3+
gdsVersion = '1.1.0-alpha02'
44
}

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

+1-1
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.0";
30+
return "1.1.0-alpha02";
3131
}
3232
}

0 commit comments

Comments
 (0)