File tree 2 files changed +6
-2
lines changed
server/src/main/java/org/elasticsearch
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
2
2
lucene = 7.2.1
3
3
4
4
# optional dependencies
Original file line number Diff line number Diff line change @@ -158,7 +158,9 @@ public class Version implements Comparable<Version> {
158
158
public static final Version V_6_2_2 = new Version (V_6_2_2_ID , org .apache .lucene .util .Version .LUCENE_7_2_1 );
159
159
public static final int V_6_2_3_ID = 6020399 ;
160
160
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 ;
162
164
163
165
static {
164
166
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 {
171
173
172
174
public static Version fromId (int id ) {
173
175
switch (id ) {
176
+ case V_6_2_4_ID :
177
+ return V_6_2_4 ;
174
178
case V_6_2_3_ID :
175
179
return V_6_2_3 ;
176
180
case V_6_2_2_ID :
You can’t perform that action at this time.
0 commit comments