File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
core/src/main/java/org/elasticsearch Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- # When updating elasticsearch, please update 'rest' version in core/src/main/resources/org/elasticsearch/bootstrap/test-framework.policy
21elasticsearch = 7.0.0-alpha1
32lucene = 7.1.0
43
Original file line number Diff line number Diff line change @@ -132,8 +132,9 @@ public class Version implements Comparable<Version> {
132132 public static final Version V_6_0_1 =
133133 new Version (V_6_0_1_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
134134 public static final int V_6_1_0_ID = 6010099 ;
135- public static final Version V_6_1_0 =
136- new Version (V_6_1_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
135+ public static final Version V_6_1_0 = new Version (V_6_1_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
136+ public static final int V_6_2_0_ID = 6020099 ;
137+ public static final Version V_6_2_0 = new Version (V_6_2_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
137138 public static final int V_7_0_0_alpha1_ID = 7000001 ;
138139 public static final Version V_7_0_0_alpha1 =
139140 new Version (V_7_0_0_alpha1_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
@@ -154,6 +155,8 @@ public static Version fromId(int id) {
154155 return V_7_0_0_alpha1 ;
155156 case V_6_1_0_ID :
156157 return V_6_1_0 ;
158+ case V_6_2_0_ID :
159+ return V_6_2_0 ;
157160 case V_6_0_1_ID :
158161 return V_6_0_1 ;
159162 case V_6_0_0_ID :
You can’t perform that action at this time.
0 commit comments