moving version to 1.0.0

Original commit: elastic/x-pack-elasticsearch@0a1c282324
This commit is contained in:
uboness 2015-01-27 10:29:54 +01:00
parent 9c3b72e782
commit e7aeaee734
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-shield</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<scm>
<connection>scm:git:git@github.com:elasticsearch/elasticsearch-shield.git</connection>

View File

@ -25,7 +25,7 @@ public class ShieldVersion 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 ShieldVersion V_1_0_0 = new ShieldVersion(V_1_0_0_ID, true, Version.V_1_4_2, LicenseVersion.V_1_0_0);
public static final ShieldVersion V_1_0_0 = new ShieldVersion(V_1_0_0_ID, false, Version.V_1_4_2, LicenseVersion.V_1_0_0);
public static final ShieldVersion CURRENT = V_1_0_0;