We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8fd9da commit c93aefdCopy full SHA for c93aefd
neo4j-adapter/src/main/java/org/neo4j/gds/compat/Neo4jVersion.java
@@ -45,14 +45,14 @@ public String toString() {
45
case V_5_3:
46
return "5.3";
47
case V_RC:
48
- return "RC";
+ return "5.4";
49
default:
50
throw new IllegalArgumentException("Unexpected value: " + this.name() + " (sad java 😞)");
51
}
52
53
54
public MajorMinorVersion semanticVersion() {
55
- String version = toString();
+ String version = toString();
56
var subVersions = version.split("\\.");
57
58
if (subVersions.length < 2) {
0 commit comments