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 @@ -112,6 +112,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
112112 public static final Version V_6_5_1 = new Version (V_6_5_1_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
113113 public static final int V_6_5_2_ID = 6050299 ;
114114 public static final Version V_6_5_2 = new Version (V_6_5_2_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
115+ public static final int V_6_5_3_ID = 6050399 ;
116+ public static final Version V_6_5_3 = new Version (V_6_5_3_ID , org .apache .lucene .util .Version .LUCENE_7_5_0 );
115117 public static final int V_6_6_0_ID = 6060099 ;
116118 public static final Version V_6_6_0 = new Version (V_6_6_0_ID , org .apache .lucene .util .Version .LUCENE_7_6_0 );
117119 public static final int V_7_0_0_ID = 7000099 ;
@@ -134,6 +136,8 @@ public static Version fromId(int id) {
134136 return V_7_0_0 ;
135137 case V_6_6_0_ID :
136138 return V_6_6_0 ;
139+ case V_6_5_3_ID :
140+ return V_6_5_3 ;
137141 case V_6_5_2_ID :
138142 return V_6_5_2 ;
139143 case V_6_5_1_ID :
You can’t perform that action at this time.
0 commit comments