diff --git a/docs/reference/analysis/analyzers/standard-analyzer.asciidoc b/docs/reference/analysis/analyzers/standard-analyzer.asciidoc
index 5240773f924..14027ffde0b 100644
--- a/docs/reference/analysis/analyzers/standard-analyzer.asciidoc
+++ b/docs/reference/analysis/analyzers/standard-analyzer.asciidoc
@@ -18,7 +18,7 @@ type:
|=======================================================================
|Setting |Description
|`stopwords` |A list of stopword to initialize the stop filter with.
-Defaults to an 'empty' stopword list coming[1.0.0.Beta1, Previously
+Defaults to an 'empty' stopword list added[1.0.0.Beta1, Previously
defaulted to the English stopwords list]
|`max_token_length` |The maximum token length. If a token is seen that
exceeds this length then it is discarded. Defaults to `255`.
diff --git a/docs/reference/search/percolate.asciidoc b/docs/reference/search/percolate.asciidoc
index c06166cb725..3c2ceef8e62 100644
--- a/docs/reference/search/percolate.asciidoc
+++ b/docs/reference/search/percolate.asciidoc
@@ -1,7 +1,7 @@
[[search-percolate]]
== Percolator
-coming[1.0.0.Beta1]
+added[1.0.0.Beta1]
Traditionally you design documents based on your data and store them into an index and then define queries via the search api
in order to retrieve these documents. The percolator works in the opposite direction, first you store queries into an
diff --git a/pom.xml b/pom.xml
index 4b4c5bb9fab..bd9de257917 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
4.0.0
org.elasticsearch
elasticsearch
- 1.0.0.Beta1-SNAPSHOT
+ 1.0.0.Beta1
jar
ElasticSearch - Open Source, Distributed, RESTful Search Engine
2009
diff --git a/src/main/java/org/elasticsearch/Version.java b/src/main/java/org/elasticsearch/Version.java
index 877c974ea2f..c2d77e4fd93 100644
--- a/src/main/java/org/elasticsearch/Version.java
+++ b/src/main/java/org/elasticsearch/Version.java
@@ -136,7 +136,7 @@ public class Version implements Serializable {
public static final Version V_0_90_6 = new Version(V_0_90_6_ID, false, org.apache.lucene.util.Version.LUCENE_45);
public static final int V_1_0_0_Beta1_ID = /*00*/1000001;
- public static final Version V_1_0_0_Beta1 = new Version(V_1_0_0_Beta1_ID, true, org.apache.lucene.util.Version.LUCENE_45);
+ public static final Version V_1_0_0_Beta1 = new Version(V_1_0_0_Beta1_ID, false, org.apache.lucene.util.Version.LUCENE_45);
public static final Version CURRENT = V_1_0_0_Beta1;