Skip to content

Commit

Permalink
Add 6.8.12 and 7.8.2 version constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Jul 27, 2020
1 parent cc42709 commit 72acbd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ BWC_VERSION:
- "6.8.9"
- "6.8.10"
- "6.8.11"
- "6.8.12"
- "7.0.0"
- "7.0.1"
- "7.1.0"
Expand All @@ -63,3 +64,4 @@ BWC_VERSION:
- "7.7.1"
- "7.8.0"
- "7.8.1"
- "7.8.2"
2 changes: 2 additions & 0 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_9 = new Version(6080999, 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_12 = new Version(6081299, 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_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);
Expand All @@ -140,6 +141,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_7_1 = new Version(7070199, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_8_1 = new Version(7080199, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_8_2 = new Version(7080299, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version V_7_9_0 = new Version(7090099, org.apache.lucene.util.Version.LUCENE_8_6_0);
public static final Version CURRENT = V_7_9_0;

Expand Down

0 comments on commit 72acbd1

Please sign in to comment.