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 @@ -192,6 +192,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
192192 public static final Version V_6_5_1 = new Version (V_6_5_1_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
193193 public static final int V_6_5_2_ID = 6050299 ;
194194 public static final Version V_6_5_2 = new Version (V_6_5_2_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
195+ public static final int V_6_5_3_ID = 6050399 ;
196+ public static final Version V_6_5_3 = new Version (V_6_5_3_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
195197 public static final int V_6_6_0_ID = 6060099 ;
196198 public static final Version V_6_6_0 = new Version (V_6_6_0_ID , org .apache .lucene .util .Version .LUCENE_7_6_0 );
197199
@@ -210,6 +212,8 @@ public static Version fromId(int id) {
210212 switch (id ) {
211213 case V_6_6_0_ID :
212214 return V_6_6_0 ;
215+ case V_6_5_3_ID :
216+ return V_6_5_3 ;
213217 case V_6_5_2_ID :
214218 return V_6_5_2 ;
215219 case V_6_5_1_ID :
You can’t perform that action at this time.
0 commit comments