File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
server/src/main/java/org/elasticsearch Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,10 @@ public class Version implements Comparable<Version> {
147147 public static final Version V_6_1_2 = new Version (V_6_1_2_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
148148 public static final int V_6_1_3_ID = 6010399 ;
149149 public static final Version V_6_1_3 = new Version (V_6_1_3_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
150+ public static final int V_6_1_4_ID = 6010499 ;
151+ public static final Version V_6_1_4 = new Version (V_6_1_4_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
152+ public static final int V_6_1_5_ID = 6010599 ;
153+ public static final Version V_6_1_5 = new Version (V_6_1_5_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
150154 public static final int V_6_2_0_ID = 6020099 ;
151155 public static final Version V_6_2_0 = new Version (V_6_2_0_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
152156 public static final int V_6_2_1_ID = 6020199 ;
@@ -185,6 +189,10 @@ public static Version fromId(int id) {
185189 return V_6_2_1 ;
186190 case V_6_2_0_ID :
187191 return V_6_2_0 ;
192+ case V_6_1_5_ID :
193+ return V_6_1_5 ;
194+ case V_6_1_4_ID :
195+ return V_6_1_4 ;
188196 case V_6_1_3_ID :
189197 return V_6_1_3 ;
190198 case V_6_1_2_ID :
You can’t perform that action at this time.
0 commit comments