File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
core/src/main/java/org/elasticsearch Expand file tree Collapse file tree 2 files changed +6
-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
2- elasticsearch = 6.1.4
1+ elasticsearch = 6.1.5
32lucene = 7.1.0
43
54# optional dependencies
Original file line number Diff line number Diff line change @@ -148,7 +148,9 @@ public class Version implements Comparable<Version> {
148148 public static final Version V_6_1_3 = new Version (V_6_1_3_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
149149 public static final int V_6_1_4_ID = 6010499 ;
150150 public static final Version V_6_1_4 = new Version (V_6_1_4_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
151- public static final Version CURRENT = V_6_1_4 ;
151+ public static final int V_6_1_5_ID = 6010599 ;
152+ public static final Version V_6_1_5 = new Version (V_6_1_5_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
153+ public static final Version CURRENT = V_6_1_5 ;
152154
153155 static {
154156 assert CURRENT .luceneVersion .equals (org .apache .lucene .util .Version .LATEST ) : "Version must be upgraded to ["
@@ -161,6 +163,8 @@ public static Version readVersion(StreamInput in) throws IOException {
161163
162164 public static Version fromId (int id ) {
163165 switch (id ) {
166+ case V_6_1_5_ID :
167+ return V_6_1_5 ;
164168 case V_6_1_4_ID :
165169 return V_6_1_4 ;
166170 case V_6_1_3_ID :
You can’t perform that action at this time.
0 commit comments