Browse Source

release [1.0.0.Beta1]

Simon Willnauer 12 years ago
parent
commit
77bc5d5ecf

+ 1 - 1
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`.

+ 1 - 1
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

+ 1 - 1
pom.xml

@@ -6,7 +6,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.elasticsearch</groupId>
     <artifactId>elasticsearch</artifactId>
-    <version>1.0.0.Beta1-SNAPSHOT</version>
+    <version>1.0.0.Beta1</version>
     <packaging>jar</packaging>
     <description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
     <inceptionYear>2009</inceptionYear>

+ 1 - 1
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;