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 @@ -143,6 +143,10 @@ public class Version implements Comparable<Version> {
143143 public static final Version V_6_1_2 = new Version (V_6_1_2_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
144144 public static final int V_6_1_3_ID = 6010399 ;
145145 public static final Version V_6_1_3 = new Version (V_6_1_3_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
146+ public static final int V_6_1_4_ID = 6010499 ;
147+ public static final Version V_6_1_4 = new Version (V_6_1_4_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
148+ public static final int V_6_1_5_ID = 6010599 ;
149+ public static final Version V_6_1_5 = new Version (V_6_1_5_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
146150 public static final int V_6_2_0_ID = 6020099 ;
147151 public static final Version V_6_2_0 = new Version (V_6_2_0_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
148152 public static final int V_6_2_1_ID = 6020199 ;
@@ -176,6 +180,10 @@ public static Version fromId(int id) {
176180 return V_6_2_1 ;
177181 case V_6_2_0_ID :
178182 return V_6_2_0 ;
183+ case V_6_1_5_ID :
184+ return V_6_1_5 ;
185+ case V_6_1_4_ID :
186+ return V_6_1_4 ;
179187 case V_6_1_3_ID :
180188 return V_6_1_3 ;
181189 case V_6_1_2_ID :
You can’t perform that action at this time.
0 commit comments