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 @@ -120,6 +120,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
120120 public static final Version V_6_6_0 = new Version (V_6_6_0_ID , org .apache .lucene .util .Version .LUCENE_7_6_0 );
121121 public static final int V_6_6_1_ID = 6060199 ;
122122 public static final Version V_6_6_1 = new Version (V_6_6_1_ID , org .apache .lucene .util .Version .LUCENE_7_6_0 );
123+ public static final int V_6_6_2_ID = 6060299 ;
124+ public static final Version V_6_6_2 = new Version (V_6_6_2_ID , org .apache .lucene .util .Version .LUCENE_7_6_0 );
123125 public static final int V_6_7_0_ID = 6070099 ;
124126 public static final Version V_6_7_0 = new Version (V_6_7_0_ID , org .apache .lucene .util .Version .LUCENE_7_7_0 );
125127 public static final int V_7_0_0_ID = 7000099 ;
@@ -150,6 +152,8 @@ public static Version fromId(int id) {
150152 return V_7_0_0 ;
151153 case V_6_7_0_ID :
152154 return V_6_7_0 ;
155+ case V_6_6_2_ID :
156+ return V_6_6_2 ;
153157 case V_6_6_1_ID :
154158 return V_6_6_1 ;
155159 case V_6_6_0_ID :
You can’t perform that action at this time.
0 commit comments