Skip to content

Commit

Permalink
Add 6.8.12 version constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Jul 27, 2020
1 parent 625a433 commit 83d108d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,4 @@ BWC_VERSION:
- "6.8.8"
- "6.8.9"
- "6.8.10"
- "6.8.11"
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 6.8.11
elasticsearch = 6.8.12
lucene = 7.7.3

# optional dependencies
Expand Down
3 changes: 2 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_9 = new Version(6080999, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_6_8_10 = new Version(6081099, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_6_8_11 = new Version(6081199, org.apache.lucene.util.Version.LUCENE_7_7_3);
public static final Version V_6_8_12 = new Version(6081299, org.apache.lucene.util.Version.LUCENE_7_7_3);

public static final Version CURRENT = V_6_8_11;
public static final Version CURRENT = V_6_8_12;


private static final ImmutableOpenIntMap<Version> idToVersion;
Expand Down

0 comments on commit 83d108d

Please sign in to comment.