Skip to content

Commit b1cf2d1

Browse files
authored
Fix Apache Lucene version for 2.6.0 (opensearch-project#6118)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent d96abfa commit b1cf2d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/opensearch/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
8989

9090
// UNRELEASED
9191
public static final Version V_2_4_2 = new Version(2040299, org.apache.lucene.util.Version.LUCENE_9_4_2);
92-
public static final Version V_2_6_0 = new Version(2060099, org.apache.lucene.util.Version.LUCENE_9_4_2);
92+
public static final Version V_2_6_0 = new Version(2060099, org.apache.lucene.util.Version.LUCENE_9_5_0);
9393
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_9_5_0);
9494
public static final Version CURRENT = V_3_0_0;
9595

0 commit comments

Comments
 (0)