File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,8 @@ public class Version implements Comparable<Version> {
148148 public static final Version V_6_1_3 = new Version (V_6_1_3_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
149149 public static final int V_6_1_4_ID = 6010499 ;
150150 public static final Version V_6_1_4 = new Version (V_6_1_4_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
151+ public static final int V_6_1_5_ID = 6010599 ;
152+ public static final Version V_6_1_5 = new Version (V_6_1_5_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
151153 public static final int V_6_2_0_ID = 6020099 ;
152154 public static final Version V_6_2_0 = new Version (V_6_2_0_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
153155 public static final int V_6_2_1_ID = 6020199 ;
@@ -177,6 +179,8 @@ public static Version fromId(int id) {
177179 return V_6_2_1 ;
178180 case V_6_2_0_ID :
179181 return V_6_2_0 ;
182+ case V_6_1_5_ID :
183+ return V_6_1_5 ;
180184 case V_6_1_4_ID :
181185 return V_6_1_4 ;
182186 case V_6_1_3_ID :
You can’t perform that action at this time.
0 commit comments