File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
core/src/main/java/org/elasticsearch Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ public class Version implements Comparable<Version> {
118118 public static final int V_6_0_0_rc2_ID = 6000052 ;
119119 public static final Version V_6_0_0_rc2 =
120120 new Version (V_6_0_0_rc2_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
121+ public static final int V_6_0_0_ID = 6000099 ;
122+ public static final Version V_6_0_0 =
123+ new Version (V_6_0_0_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
121124 public static final int V_6_1_0_ID = 6010099 ;
122125 public static final Version V_6_1_0 =
123126 new Version (V_6_1_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
@@ -143,6 +146,8 @@ public static Version fromId(int id) {
143146 return V_7_0_0_alpha1 ;
144147 case V_6_1_0_ID :
145148 return V_6_1_0 ;
149+ case V_6_0_0_ID :
150+ return V_6_0_0 ;
146151 case V_6_0_0_rc2_ID :
147152 return V_6_0_0_rc2 ;
148153 case V_6_0_0_beta2_ID :
You can’t perform that action at this time.
0 commit comments