File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
core/src/main/java/org/elasticsearch Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# When updating elasticsearch, please update 'rest' version in core/src/main/resources/org/elasticsearch/bootstrap/test-framework.policy
2- elasticsearch = 6.1.0
2+ elasticsearch = 6.1.1
33lucene = 7.1.0
44
55# optional dependencies
Original file line number Diff line number Diff line change @@ -134,7 +134,9 @@ public class Version implements Comparable<Version> {
134134 new Version (V_6_0_2_ID , org .apache .lucene .util .Version .LUCENE_7_0_1 );
135135 public static final int V_6_1_0_ID = 6010099 ;
136136 public static final Version V_6_1_0 = new Version (V_6_1_0_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
137- public static final Version CURRENT = V_6_1_0 ;
137+ public static final int V_6_1_1_ID = 6010199 ;
138+ public static final Version V_6_1_1 = new Version (V_6_1_1_ID , org .apache .lucene .util .Version .LUCENE_7_1_0 );
139+ public static final Version CURRENT = V_6_1_1 ;
138140
139141 static {
140142 assert CURRENT .luceneVersion .equals (org .apache .lucene .util .Version .LATEST ) : "Version must be upgraded to ["
@@ -147,6 +149,8 @@ public static Version readVersion(StreamInput in) throws IOException {
147149
148150 public static Version fromId (int id ) {
149151 switch (id ) {
152+ case V_6_1_1_ID :
153+ return V_6_1_1 ;
150154 case V_6_1_0_ID :
151155 return V_6_1_0 ;
152156 case V_6_0_2_ID :
You can’t perform that action at this time.
0 commit comments