File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
130130 public static final Version V_6_7_2 = new Version (V_6_7_2_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
131131 public static final int V_7_0_0_ID = 7000099 ;
132132 public static final Version V_7_0_0 = new Version (V_7_0_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
133+ public static final int V_7_0_1_ID = 7000199 ;
134+ public static final Version V_7_0_1 = new Version (V_7_0_1_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
133135 public static final int V_7_1_0_ID = 7010099 ;
134136 public static final Version V_7_1_0 = new Version (V_7_1_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
135137 public static final int V_8_0_0_ID = 8000099 ;
@@ -152,6 +154,8 @@ public static Version fromId(int id) {
152154 return V_8_0_0 ;
153155 case V_7_1_0_ID :
154156 return V_7_1_0 ;
157+ case V_7_0_1_ID :
158+ return V_7_0_1 ;
155159 case V_7_0_0_ID :
156160 return V_7_0_0 ;
157161 case V_6_7_1_ID :
You can’t perform that action at this time.
0 commit comments