File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
core/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 @@ -92,6 +92,8 @@ public class Version implements Comparable<Version> {
9292 public static final Version V_5_5_3 = new Version (V_5_5_3_ID , org .apache .lucene .util .Version .LUCENE_6_6_0 );
9393 public static final int V_5_6_0_ID = 5060099 ;
9494 public static final Version V_5_6_0 = new Version (V_5_6_0_ID , org .apache .lucene .util .Version .LUCENE_6_6_0 );
95+ public static final int V_5_6_1_ID = 5060199 ;
96+ public static final Version V_5_6_1 = new Version (V_5_6_1_ID , org .apache .lucene .util .Version .LUCENE_6_6_0 );
9597 public static final int V_6_0_0_alpha1_ID = 6000001 ;
9698 public static final Version V_6_0_0_alpha1 =
9799 new Version (V_6_0_0_alpha1_ID , org .apache .lucene .util .Version .LUCENE_7_0_0 );
@@ -142,6 +144,8 @@ public static Version fromId(int id) {
142144 return V_6_0_0_alpha2 ;
143145 case V_6_0_0_alpha1_ID :
144146 return V_6_0_0_alpha1 ;
147+ case V_5_6_1_ID :
148+ return V_5_6_1 ;
145149 case V_5_6_0_ID :
146150 return V_5_6_0 ;
147151 case V_5_5_3_ID :
You can’t perform that action at this time.
0 commit comments