Skip to content

Commit

Permalink
Bump version to 4.0.9-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger authored and mergify[bot] committed Nov 7, 2019
1 parent 32991ef commit a02c1f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion es/es-server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final int ES_V_7_0_6_ID = 7_00_06_99;
public static final int ES_V_7_0_7_ID = 7_00_07_99;
public static final int ES_V_7_0_8_ID = 7_00_08_99;
public static final int ES_V_7_0_9_ID = 7_00_09_99;
public static final Version V_4_0_0 = new Version(ES_V_7_0_0_ID, ES_V_7_0_0_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_4_0_1 = new Version(ES_V_7_0_1_ID, ES_V_7_0_1_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_4_0_2 = new Version(ES_V_7_0_2_ID, ES_V_7_0_2_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
Expand All @@ -85,8 +86,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_4_0_6 = new Version(ES_V_7_0_6_ID, ES_V_7_0_6_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_4_0_7 = new Version(ES_V_7_0_7_ID, ES_V_7_0_7_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_4_0_8 = new Version(ES_V_7_0_8_ID, ES_V_7_0_8_ID - INTERNAL_OFFSET, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_4_0_9 = new Version(ES_V_7_0_9_ID, ES_V_7_0_9_ID - INTERNAL_OFFSET, true, org.apache.lucene.util.Version.LUCENE_8_0_0);

public static final Version CURRENT = V_4_0_8;
public static final Version CURRENT = V_4_0_9;

static {
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
Expand Down Expand Up @@ -121,6 +123,8 @@ public static Version fromId(int internalId) {
return V_4_0_7;
case ES_V_7_0_8_ID:
return V_4_0_8;
case ES_V_7_0_9_ID:
return V_4_0_9;
case V_EMPTY_ID:
return V_EMPTY;
default:
Expand Down
2 changes: 1 addition & 1 deletion gradle/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ azure_storage=8.0.0
azure_keyvault=1.0.0

# required for the plugin es-version; We should drop this eventually
internalES=7.0.8
internalES=7.0.9

# ES HDFS
hadoop2=2.8.1
Expand Down

0 comments on commit a02c1f3

Please sign in to comment.