From f44c61d876d934149b5592f5f781bfbc0f920624 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Thu, 9 Jul 2015 19:36:48 -0400 Subject: [PATCH] bump version to 2.0.0.beta1-SNAPSHOT Original commit: elastic/x-pack-elasticsearch@bd49898d823b501bc799771faf4905c38979e5ec --- core/pom.xml | 2 +- licensor/pom.xml | 4 ++-- plugin-api/pom.xml | 6 +++--- .../org/elasticsearch/license/plugin/LicenseVersion.java | 6 +++--- plugin/pom.xml | 8 ++++---- pom.xml | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 0aae5bdd163..f00cc1bd64a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ elasticsearch-license org.elasticsearch - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT 4.0.0 diff --git a/licensor/pom.xml b/licensor/pom.xml index 05d951ba74f..a8290c535e8 100644 --- a/licensor/pom.xml +++ b/licensor/pom.xml @@ -5,7 +5,7 @@ elasticsearch-license org.elasticsearch - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT 4.0.0 @@ -23,7 +23,7 @@ org.elasticsearch elasticsearch-license-core - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index 04205bd80fb..ca17dbd05b9 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -5,7 +5,7 @@ elasticsearch-license org.elasticsearch - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT 4.0.0 @@ -21,13 +21,13 @@ org.elasticsearch elasticsearch-license-licensor - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT test org.elasticsearch elasticsearch-license-core - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT compile diff --git a/plugin-api/src/main/java/org/elasticsearch/license/plugin/LicenseVersion.java b/plugin-api/src/main/java/org/elasticsearch/license/plugin/LicenseVersion.java index b6e96c68e1e..dc15b59625e 100644 --- a/plugin-api/src/main/java/org/elasticsearch/license/plugin/LicenseVersion.java +++ b/plugin-api/src/main/java/org/elasticsearch/license/plugin/LicenseVersion.java @@ -23,11 +23,11 @@ public class LicenseVersion implements Serializable { // the (internal) format of the id is there so we can easily do after/before checks on the id public static final int V_1_0_0_ID = /*00*/1000099; - public static final int V_2_0_0_ID = /*00*/2000099; + public static final int V_2_0_0_beta1_ID = /*00*/2000001; public static final LicenseVersion V_1_0_0 = new LicenseVersion(V_1_0_0_ID, false, License.VERSION_START, Version.V_1_4_0_Beta1); - public static final LicenseVersion V_2_0_0 = new LicenseVersion(V_2_0_0_ID, true, License.VERSION_START, Version.V_2_0_0); + public static final LicenseVersion V_2_0_0_beta1 = new LicenseVersion(V_2_0_0_beta1_ID, true, License.VERSION_START, Version.V_2_0_0_beta1); - public static final LicenseVersion CURRENT = V_2_0_0; + public static final LicenseVersion CURRENT = V_2_0_0_beta1; public static LicenseVersion readVersion(StreamInput in) throws IOException { return fromId(in.readVInt()); diff --git a/plugin/pom.xml b/plugin/pom.xml index 6a298327f88..8e910af3285 100644 --- a/plugin/pom.xml +++ b/plugin/pom.xml @@ -5,7 +5,7 @@ elasticsearch-license org.elasticsearch - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT 4.0.0 @@ -24,18 +24,18 @@ org.elasticsearch elasticsearch-license-licensor - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT test org.elasticsearch elasticsearch-license-core - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT org.elasticsearch elasticsearch-license-plugin-api - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT diff --git a/pom.xml b/pom.xml index 05f71bc6013..cf6801aeac8 100644 --- a/pom.xml +++ b/pom.xml @@ -7,13 +7,13 @@ org.elasticsearch.plugin elasticsearch-plugin - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT org.elasticsearch elasticsearch-license pom - 2.0.0-SNAPSHOT + 2.0.0.beta1-SNAPSHOT core licensor