Skip to content

Commit 355178d

Browse files
Mats-SXyuvalr1neo
andcommitted
Attempt to fix RC compatibility
- RC compat layer claims to support V_DEV when a running Neo4j is determined to be of that version (5.4) - Port over dev compat fixes to RC compat layer - Make V_Dev claim to be 5.4, not 5.3 Co-authored-by: Yuval Rotenberg <[email protected]>
1 parent 48d91e9 commit 355178d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo4j-adapter/src/main/java/org/neo4j/gds/compat/Neo4jVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public String toString() {
5353

5454
public MajorMinorVersion semanticVersion() {
5555
if (this == V_Dev) {
56-
return ImmutableMajorMinorVersion.of(5, 3);
56+
return ImmutableMajorMinorVersion.of(5, 4);
5757
}
5858

5959
String version = toString();

0 commit comments

Comments
 (0)