[7.x] Introduce 6.8.13 as a version (#61198)

Introduce version 6.8.13 to branch 7.x
This commit is contained in:
Dimitrios Liappis 2020-08-18 17:07:16 +03:00 committed by GitHub
parent 8a387d6df1
commit c870640cbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,7 @@ BWC_VERSION:
- "6.8.10" - "6.8.10"
- "6.8.11" - "6.8.11"
- "6.8.12" - "6.8.12"
- "6.8.13"
- "7.0.0" - "7.0.0"
- "7.0.1" - "7.0.1"
- "7.1.0" - "7.1.0"

View File

@ -119,6 +119,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_10 = new Version(6081099, LUCENE_7_7_3); public static final Version V_6_8_10 = new Version(6081099, LUCENE_7_7_3);
public static final Version V_6_8_11 = new Version(6081199, LUCENE_7_7_3); public static final Version V_6_8_11 = new Version(6081199, LUCENE_7_7_3);
public static final Version V_6_8_12 = new Version(6081299, LUCENE_7_7_3); public static final Version V_6_8_12 = new Version(6081299, LUCENE_7_7_3);
public static final Version V_6_8_13 = new Version(6081399, LUCENE_7_7_3);
public static final Version V_7_0_0 = new Version(7000099, org.apache.lucene.util.Version.LUCENE_8_0_0); public static final Version V_7_0_0 = new Version(7000099, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_0_1 = new Version(7000199, org.apache.lucene.util.Version.LUCENE_8_0_0); public static final Version V_7_0_1 = new Version(7000199, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_1_0 = new Version(7010099, org.apache.lucene.util.Version.LUCENE_8_0_0); public static final Version V_7_1_0 = new Version(7010099, org.apache.lucene.util.Version.LUCENE_8_0_0);