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 @@ -126,6 +126,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
126
126
public static final Version V_5_6_11 = new Version (V_5_6_11_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
127
127
public static final int V_5_6_12_ID = 5061299 ;
128
128
public static final Version V_5_6_12 = new Version (V_5_6_12_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
129
+ public static final int V_5_6_13_ID = 5061399 ;
130
+ public static final Version V_5_6_13 = new Version (V_5_6_13_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
129
131
public static final int V_6_0_0_alpha1_ID = 6000001 ;
130
132
public static final Version V_6_0_0_alpha1 = new Version (V_6_0_0_alpha1_ID , org .apache .lucene .util .Version .LUCENE_7_0_0 );
131
133
public static final int V_6_0_0_alpha2_ID = 6000002 ;
@@ -246,6 +248,8 @@ public static Version fromId(int id) {
246
248
return V_6_0_0_alpha2 ;
247
249
case V_6_0_0_alpha1_ID :
248
250
return V_6_0_0_alpha1 ;
251
+ case V_5_6_13_ID :
252
+ return V_5_6_13 ;
249
253
case V_5_6_12_ID :
250
254
return V_5_6_12 ;
251
255
case V_5_6_11_ID :
You can’t perform that action at this time.
0 commit comments