Skip to content

Commit

Permalink
Bump version to 5.1.3 (#22597)
Browse files Browse the repository at this point in the history
* Bump version to 5.1.3

Bumps version and adds the BWC indices
  • Loading branch information
dakrone committed Jan 12, 2017
1 parent acf2d2f commit 58daf5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ public class Version implements Comparable<Version> {
public static final Version V_5_1_1_UNRELEASED = new Version(V_5_1_1_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_3_0);
public static final int V_5_1_2_ID_UNRELEASED = 5010299;
public static final Version V_5_1_2_UNRELEASED = new Version(V_5_1_2_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_3_0);
public static final int V_5_1_3_ID_UNRELEASED = 5010399;
public static final Version V_5_1_3_UNRELEASED = new Version(V_5_1_3_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_3_0);
public static final int V_5_2_0_ID_UNRELEASED = 5020099;
public static final Version V_5_2_0_UNRELEASED = new Version(V_5_2_0_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_3_0);
public static final int V_5_3_0_ID_UNRELEASED = 5030099;
Expand Down Expand Up @@ -129,6 +131,8 @@ public static Version fromId(int id) {
return V_5_3_0_UNRELEASED;
case V_5_2_0_ID_UNRELEASED:
return V_5_2_0_UNRELEASED;
case V_5_1_3_ID_UNRELEASED:
return V_5_1_3_UNRELEASED;
case V_5_1_2_ID_UNRELEASED:
return V_5_1_2_UNRELEASED;
case V_5_1_1_ID_UNRELEASED:
Expand Down
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions qa/vagrant/versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
5.0.1
5.0.2
5.1.1
5.1.2

0 comments on commit 58daf5f

Please sign in to comment.