Skip to content

Commit

Permalink
Bumping version to 7.13 after 7.12 feature freeze
Browse files Browse the repository at this point in the history
  • Loading branch information
williamrandolph committed Feb 18, 2021
1 parent d0130ce commit cf52099
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:
- "7.11.0"
- "7.11.1"
- "7.11.2"
- "7.12.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.12.0
elasticsearch = 7.13.0
lucene = 8.8.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 @@ -143,7 +143,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_11_1 = new Version(7110199, org.apache.lucene.util.Version.LUCENE_8_7_0);
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 CURRENT = V_7_12_0;
public static final Version V_7_13_0 = new Version(7130099, org.apache.lucene.util.Version.LUCENE_8_8_0);
public static final Version CURRENT = V_7_13_0;

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

0 comments on commit cf52099

Please sign in to comment.