File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
core/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 @@ -124,6 +124,8 @@ public class Version implements Comparable<Version> {
124124 public static final int V_6_0_0_ID = 6000099 ;
125125 public static final Version V_6_0_0 =
126126 new Version (V_6_0_0_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
127+ public static final int V_6_0_1_ID = 6000199 ;
128+ public static final Version V_6_0_1 = new Version (V_6_0_1_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
127129 public static final int V_6_1_0_ID = 6010099 ;
128130 public static final Version V_6_1_0 = new Version (V_6_1_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
129131 public static final Version CURRENT = V_6_1_0 ;
@@ -141,6 +143,8 @@ public static Version fromId(int id) {
141143 switch (id ) {
142144 case V_6_1_0_ID :
143145 return V_6_1_0 ;
146+ case V_6_0_1_ID :
147+ return V_6_0_1 ;
144148 case V_6_0_0_ID :
145149 return V_6_0_0 ;
146150 case V_6_0_0_rc2_ID :
You can’t perform that action at this time.
0 commit comments