File tree 4 files changed +10
-6
lines changed
main/java/org/elasticsearch
test/resources/indices/bwc
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- elasticsearch = 5.6.3
1
+ elasticsearch = 5.6.4
2
2
lucene = 6.6.1
3
3
4
4
# optional dependencies
Original file line number Diff line number Diff line change @@ -146,9 +146,11 @@ public class Version implements Comparable<Version> {
146
146
public static final Version V_5_6_1 = new Version (V_5_6_1_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
147
147
public static final int V_5_6_2_ID = 5060299 ;
148
148
public static final Version V_5_6_2 = new Version (V_5_6_2_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
149
- public static final int V_5_6_3_ID_UNRELEASED = 5060399 ;
150
- public static final Version V_5_6_3_UNRELEASED = new Version (V_5_6_3_ID_UNRELEASED , org .apache .lucene .util .Version .LUCENE_6_6_1 );
151
- public static final Version CURRENT = V_5_6_3_UNRELEASED ;
149
+ public static final int V_5_6_3_ID = 5060399 ;
150
+ public static final Version V_5_6_3 = new Version (V_5_6_3_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
151
+ public static final int V_5_6_4_ID_UNRELEASED = 5060499 ;
152
+ public static final Version V_5_6_4_UNRELEASED = new Version (V_5_6_4_ID_UNRELEASED , org .apache .lucene .util .Version .LUCENE_6_6_1 );
153
+ public static final Version CURRENT = V_5_6_4_UNRELEASED ;
152
154
153
155
// unreleased versions must be added to the above list with the suffix _UNRELEASED (with the exception of CURRENT)
154
156
@@ -163,8 +165,10 @@ public static Version readVersion(StreamInput in) throws IOException {
163
165
164
166
public static Version fromId (int id ) {
165
167
switch (id ) {
166
- case V_5_6_3_ID_UNRELEASED :
167
- return V_5_6_3_UNRELEASED ;
168
+ case V_5_6_4_ID_UNRELEASED :
169
+ return V_5_6_4_UNRELEASED ;
170
+ case V_5_6_3_ID :
171
+ return V_5_6_3 ;
168
172
case V_5_6_2_ID :
169
173
return V_5_6_2 ;
170
174
case V_5_6_1_ID :
You can’t perform that action at this time.
0 commit comments