Skip to content

Commit

Permalink
Bump version to 7.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed May 25, 2021
1 parent f9db6c0 commit 50231f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ BWC_VERSION:
- "6.8.14"
- "6.8.15"
- "6.8.16"
- "6.8.17"
- "7.0.0"
- "7.0.1"
- "7.1.0"
Expand Down Expand Up @@ -80,4 +81,4 @@ BWC_VERSION:
- "7.11.2"
- "7.12.0"
- "7.12.1"
- "7.12.2"
- "7.13.0"
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.13.0
elasticsearch = 7.13.1
lucene = 8.8.2

bundled_jdk_vendor = adoptopenjdk
Expand Down
5 changes: 3 additions & 2 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_8_14 = new Version(6081499, LUCENE_7_7_3);
public static final Version V_6_8_15 = new Version(6081599, LUCENE_7_7_3);
public static final Version V_6_8_16 = new Version(6081699, LUCENE_7_7_3);
public static final Version V_6_8_17 = new Version(6081799, 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 Down Expand Up @@ -145,9 +146,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_11_2 = new Version(7110299, org.apache.lucene.util.Version.LUCENE_8_7_0);
public static final Version V_7_12_0 = new Version(7120099, org.apache.lucene.util.Version.LUCENE_8_8_0);
public static final Version V_7_12_1 = new Version(7120199, org.apache.lucene.util.Version.LUCENE_8_8_0);
public static final Version V_7_12_2 = new Version(7120299, org.apache.lucene.util.Version.LUCENE_8_8_0);
public static final Version V_7_13_0 = new Version(7130099, org.apache.lucene.util.Version.LUCENE_8_8_2);
public static final Version CURRENT = V_7_13_0;
public static final Version V_7_13_1 = new Version(7130199, org.apache.lucene.util.Version.LUCENE_8_8_2);
public static final Version CURRENT = V_7_13_1;

private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;
Expand Down

0 comments on commit 50231f1

Please sign in to comment.