@@ -128,10 +128,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {
128
128
public static final Version V_6_7_1 = new Version (V_6_7_1_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
129
129
public static final int V_6_7_2_ID = 6070299 ;
130
130
public static final Version V_6_7_2 = new Version (V_6_7_2_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
131
- public static final int V_6_7_3_ID = 6070399 ;
132
- public static final Version V_6_7_3 = new Version (V_6_7_3_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
133
131
public static final int V_6_8_0_ID = 6080099 ;
134
132
public static final Version V_6_8_0 = new Version (V_6_8_0_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
133
+ public static final int V_6_8_1_ID = 6080199 ;
134
+ public static final Version V_6_8_1 = new Version (V_6_8_1_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
135
135
public static final int V_7_0_0_ID = 7000099 ;
136
136
public static final Version V_7_0_0 = new Version (V_7_0_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
137
137
public static final int V_7_0_1_ID = 7000199 ;
@@ -140,7 +140,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
140
140
public static final Version V_7_0_2 = new Version (V_7_0_2_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
141
141
public static final int V_7_1_0_ID = 7010099 ;
142
142
public static final Version V_7_1_0 = new Version (V_7_1_0_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
143
- public static final Version CURRENT = V_7_1_0 ;
143
+ public static final int V_7_1_1_ID = 7010199 ;
144
+ public static final Version V_7_1_1 = new Version (V_7_1_1_ID , org .apache .lucene .util .Version .LUCENE_8_0_0 );
145
+ public static final Version CURRENT = V_7_1_1 ;
144
146
145
147
static {
146
148
assert CURRENT .luceneVersion .equals (org .apache .lucene .util .Version .LATEST ) : "Version must be upgraded to ["
@@ -153,6 +155,8 @@ public static Version readVersion(StreamInput in) throws IOException {
153
155
154
156
public static Version fromId (int id ) {
155
157
switch (id ) {
158
+ case V_7_1_1_ID :
159
+ return V_7_1_1 ;
156
160
case V_7_1_0_ID :
157
161
return V_7_1_0 ;
158
162
case V_7_0_2_ID :
@@ -161,10 +165,10 @@ public static Version fromId(int id) {
161
165
return V_7_0_1 ;
162
166
case V_7_0_0_ID :
163
167
return V_7_0_0 ;
168
+ case V_6_8_1_ID :
169
+ return V_6_8_1 ;
164
170
case V_6_8_0_ID :
165
171
return V_6_8_0 ;
166
- case V_6_7_3_ID :
167
- return V_6_7_3 ;
168
172
case V_6_7_1_ID :
169
173
return V_6_7_1 ;
170
174
case V_6_7_2_ID :
0 commit comments