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 @@ -170,6 +170,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
170170 public static final Version V_6_2_5 = new Version (V_6_2_5_ID , LUCENE_7_2_1 );
171171 public static final int V_6_3_0_ID = 6030099 ;
172172 public static final Version V_6_3_0 = new Version (V_6_3_0_ID , org .apache .lucene .util .Version .LUCENE_7_3_0 );
173+ public static final int V_6_4_0_ID = 6040099 ;
174+ public static final Version V_6_4_0 = new Version (V_6_4_0_ID , org .apache .lucene .util .Version .LUCENE_7_3_0 );
173175 public static final int V_7_0_0_alpha1_ID = 7000001 ;
174176 public static final Version V_7_0_0_alpha1 =
175177 new Version (V_7_0_0_alpha1_ID , org .apache .lucene .util .Version .LUCENE_7_3_0 );
@@ -188,6 +190,8 @@ public static Version fromId(int id) {
188190 switch (id ) {
189191 case V_7_0_0_alpha1_ID :
190192 return V_7_0_0_alpha1 ;
193+ case V_6_4_0_ID :
194+ return V_6_4_0 ;
191195 case V_6_3_0_ID :
192196 return V_6_3_0 ;
193197 case V_6_2_5_ID :
You can’t perform that action at this time.
0 commit comments