release [1.0.0.Beta1]

This commit is contained in:
Simon Willnauer 2013-11-06 15:32:43 +01:00
parent bb777a2dfe
commit 77bc5d5ecf
4 changed files with 4 additions and 4 deletions

View File

@ -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`.

View File

@ -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

View File

@ -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>

View File

@ -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;