@@ -81,6 +81,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
81
81
public static final Version V_6_1_4 = new Version (6010499 , org .apache .lucene .util .Version .LUCENE_7_1_0 );
82
82
// The below version is missing from the 7.3 JAR
83
83
private static final org .apache .lucene .util .Version LUCENE_7_2_1 = org .apache .lucene .util .Version .fromBits (7 , 2 , 1 );
84
+ // Version constant for Lucene 7.7.3 release with index corruption bug fix
85
+ private static final org .apache .lucene .util .Version LUCENE_7_7_3 = org .apache .lucene .util .Version .fromBits (7 , 7 , 3 );
84
86
public static final Version V_6_2_0 = new Version (6020099 , LUCENE_7_2_1 );
85
87
public static final Version V_6_2_1 = new Version (6020199 , LUCENE_7_2_1 );
86
88
public static final Version V_6_2_2 = new Version (6020299 , LUCENE_7_2_1 );
@@ -113,7 +115,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
113
115
public static final Version V_6_8_6 = new Version (6080699 , org .apache .lucene .util .Version .LUCENE_7_7_2 );
114
116
public static final Version V_6_8_7 = new Version (6080799 , org .apache .lucene .util .Version .LUCENE_7_7_2 );
115
117
public static final Version V_6_8_8 = new Version (6080899 , org .apache .lucene .util .Version .LUCENE_7_7_2 );
116
- public static final Version V_6_8_9 = new Version (6080999 , org . apache . lucene . util . Version . LUCENE_7_7_2 );
118
+ public static final Version V_6_8_9 = new Version (6080999 , LUCENE_7_7_3 );
117
119
public static final Version V_7_0_0 = new Version (7000099 , org .apache .lucene .util .Version .LUCENE_8_0_0 );
118
120
public static final Version V_7_0_1 = new Version (7000199 , org .apache .lucene .util .Version .LUCENE_8_0_0 );
119
121
public static final Version V_7_1_0 = new Version (7010099 , org .apache .lucene .util .Version .LUCENE_8_0_0 );
0 commit comments