release [1.0.0.RC1]
This commit is contained in:
parent
9e3f527721
commit
c6155c5142
|
@ -14,7 +14,7 @@ type:
|
|||
|`pattern` |The regular expression pattern, defaults to `\W+`.
|
||||
|`flags` |The regular expression flags.
|
||||
|`stopwords` |A list of stopwords to initialize the stop filter with.
|
||||
Defaults to an 'empty' stopword list coming[1.0.0.RC1, Previously
|
||||
Defaults to an 'empty' stopword list added[1.0.0.RC1, Previously
|
||||
defaulted to the English stopwords list]. Check
|
||||
<<analysis-stop-analyzer,Stop Analyzer>> for more details.
|
||||
|===================================================================
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>elasticsearch</artifactId>
|
||||
<version>1.0.0.RC1-SNAPSHOT</version>
|
||||
<version>1.0.0.RC1</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>Elasticsearch - Open Source, Distributed, RESTful Search Engine</description>
|
||||
<inceptionYear>2009</inceptionYear>
|
||||
|
|
|
@ -148,7 +148,7 @@ public class Version implements Serializable {
|
|||
public static final int V_1_0_0_Beta2_ID = /*00*/1000002;
|
||||
public static final Version V_1_0_0_Beta2 = new Version(V_1_0_0_Beta2_ID, false, org.apache.lucene.util.Version.LUCENE_46);
|
||||
public static final int V_1_0_0_RC1_ID = /*00*/1000051;
|
||||
public static final Version V_1_0_0_RC1 = new Version(V_1_0_0_RC1_ID, true, org.apache.lucene.util.Version.LUCENE_46);
|
||||
public static final Version V_1_0_0_RC1 = new Version(V_1_0_0_RC1_ID, false, org.apache.lucene.util.Version.LUCENE_46);
|
||||
|
||||
public static final Version CURRENT = V_1_0_0_RC1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue