File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
server/src/main/java/org/elasticsearch Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- elasticsearch = 6.2.3
1+ elasticsearch = 6.2.4
22lucene = 7.2.1
33
44# optional dependencies
Original file line number Diff line number Diff line change @@ -158,7 +158,9 @@ public class Version implements Comparable<Version> {
158158 public static final Version V_6_2_2 = new Version (V_6_2_2_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
159159 public static final int V_6_2_3_ID = 6020399 ;
160160 public static final Version V_6_2_3 = new Version (V_6_2_3_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
161- public static final Version CURRENT = V_6_2_3 ;
161+ public static final int V_6_2_4_ID = 6020499 ;
162+ public static final Version V_6_2_4 = new Version (V_6_2_4_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
163+ public static final Version CURRENT = V_6_2_4 ;
162164
163165 static {
164166 assert CURRENT .luceneVersion .equals (org .apache .lucene .util .Version .LATEST ) : "Version must be upgraded to ["
@@ -171,6 +173,8 @@ public static Version readVersion(StreamInput in) throws IOException {
171173
172174 public static Version fromId (int id ) {
173175 switch (id ) {
176+ case V_6_2_4_ID :
177+ return V_6_2_4 ;
174178 case V_6_2_3_ID :
175179 return V_6_2_3 ;
176180 case V_6_2_2_ID :
You can’t perform that action at this time.
0 commit comments