Skip to content

Commit

Permalink
[7.6] Add 7.6.2 as version (#53112)
Browse files Browse the repository at this point in the history
  • Loading branch information
ywelsch committed Mar 4, 2020
1 parent 8b10ff3 commit 6bca632
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 @@ -54,3 +54,4 @@ BWC_VERSION:
- "7.5.1"
- "7.5.2"
- "7.6.0"
- "7.6.1"
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 7.6.1
elasticsearch = 7.6.2
lucene = 8.4.0

bundled_jdk_vendor = adoptopenjdk
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 @@ -130,7 +130,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_5_2 = new Version(7050299, org.apache.lucene.util.Version.LUCENE_8_3_0);
public static final Version V_7_6_0 = new Version(7060099, org.apache.lucene.util.Version.LUCENE_8_4_0);
public static final Version V_7_6_1 = new Version(7060199, org.apache.lucene.util.Version.LUCENE_8_4_0);
public static final Version CURRENT = V_7_6_1;
public static final Version V_7_6_2 = new Version(7060299, org.apache.lucene.util.Version.LUCENE_8_4_0);
public static final Version CURRENT = V_7_6_2;

private static final ImmutableOpenIntMap<Version> idToVersion;

Expand Down

0 comments on commit 6bca632

Please sign in to comment.