moving version to 1.0.0-Beta1

Original commit: elastic/x-pack-elasticsearch@d88dd97379
This commit is contained in:
uboness 2015-05-20 14:10:51 +02:00
parent 68d0420dd2
commit 0a3c85803c
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -3,4 +3,4 @@
- do: {watcher.info: {}} - do: {watcher.info: {}}
- is_true: version.build_hash - is_true: version.build_hash
- is_true: version.build_timestamp - is_true: version.build_timestamp
- is_true: version.build_snapshot - is_false: version.build_snapshot

View File

@ -25,7 +25,7 @@ public class WatcherVersion implements Serializable {
// the (internal) format of the id is there so we can easily do after/before checks on the id // 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_Beta1_ID = /*00*/1000001; public static final int V_1_0_0_Beta1_ID = /*00*/1000001;
public static final WatcherVersion V_1_0_0_Beta1 = new WatcherVersion(V_1_0_0_Beta1_ID, true, Version.V_1_5_0, LicenseVersion.V_1_0_0); public static final WatcherVersion V_1_0_0_Beta1 = new WatcherVersion(V_1_0_0_Beta1_ID, false, Version.V_1_5_0, LicenseVersion.V_1_0_0);
public static final WatcherVersion CURRENT = V_1_0_0_Beta1; public static final WatcherVersion CURRENT = V_1_0_0_Beta1;