File tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
92
92
public static final Version V_7_1_1 = new Version (V_7_1_1_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
93
93
public static final int V_7_2_0_ID = 7020099 ;
94
94
public static final Version V_7_2_0 = new Version (V_7_2_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
95
+ public static final int V_7_3_0_ID = 7030099 ;
96
+ public static final Version V_7_3_0 = new Version (V_7_3_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
95
97
public static final int V_8_0_0_ID = 8000099 ;
96
98
public static final Version V_8_0_0 = new Version (V_8_0_0_ID , org .apache .lucene .util .Version .LUCENE_8_1_0 );
97
99
public static final Version CURRENT = V_8_0_0 ;
@@ -110,6 +112,8 @@ public static Version fromId(int id) {
110
112
switch (id ) {
111
113
case V_8_0_0_ID :
112
114
return V_8_0_0 ;
115
+ case V_7_3_0_ID :
116
+ return V_7_3_0 ;
113
117
case V_7_2_0_ID :
114
118
return V_7_2_0 ;
115
119
case V_7_1_1_ID :
You can’t perform that action at this time.
0 commit comments