File tree 2 files changed +6
-3
lines changed
core/src/main/java/org/elasticsearch
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
3
2
lucene = 7.1.0
4
3
5
4
# optional dependencies
Original file line number Diff line number Diff line change @@ -148,7 +148,9 @@ public class Version implements Comparable<Version> {
148
148
public static final Version V_6_1_3 = new Version (V_6_1_3_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
149
149
public static final int V_6_1_4_ID = 6010499 ;
150
150
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 ;
152
154
153
155
static {
154
156
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 {
161
163
162
164
public static Version fromId (int id ) {
163
165
switch (id ) {
166
+ case V_6_1_5_ID :
167
+ return V_6_1_5 ;
164
168
case V_6_1_4_ID :
165
169
return V_6_1_4 ;
166
170
case V_6_1_3_ID :
You can’t perform that action at this time.
0 commit comments