File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
main/java/org/elasticsearch
test/resources/indices/bwc Expand file tree Collapse file tree 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
22lucene = 6.6.1
33
44# optional dependencies
Original file line number Diff line number Diff line change @@ -146,9 +146,11 @@ public class Version implements Comparable<Version> {
146146 public static final Version V_5_6_1 = new Version (V_5_6_1_ID , org .apache .lucene .util .Version .LUCENE_6_6_1 );
147147 public static final int V_5_6_2_ID = 5060299 ;
148148 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 ;
152154
153155 // unreleased versions must be added to the above list with the suffix _UNRELEASED (with the exception of CURRENT)
154156
@@ -163,8 +165,10 @@ public static Version readVersion(StreamInput in) throws IOException {
163165
164166 public static Version fromId (int id ) {
165167 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 ;
168172 case V_5_6_2_ID :
169173 return V_5_6_2 ;
170174 case V_5_6_1_ID :
You can’t perform that action at this time.
0 commit comments