Skip to content

Commit c6155c5

Browse files
committed
release [1.0.0.RC1]
1 parent 9e3f527 commit c6155c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/reference/analysis/analyzers/pattern-analyzer.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type:
1414
|`pattern` |The regular expression pattern, defaults to `\W+`.
1515
|`flags` |The regular expression flags.
1616
|`stopwords` |A list of stopwords to initialize the stop filter with.
17-
Defaults to an 'empty' stopword list coming[1.0.0.RC1, Previously
17+
Defaults to an 'empty' stopword list added[1.0.0.RC1, Previously
1818
defaulted to the English stopwords list]. Check
1919
<<analysis-stop-analyzer,Stop Analyzer>> for more details.
2020
|===================================================================

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.elasticsearch</groupId>
88
<artifactId>elasticsearch</artifactId>
9-
<version>1.0.0.RC1-SNAPSHOT</version>
9+
<version>1.0.0.RC1</version>
1010
<packaging>jar</packaging>
1111
<description>Elasticsearch - Open Source, Distributed, RESTful Search Engine</description>
1212
<inceptionYear>2009</inceptionYear>

src/main/java/org/elasticsearch/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public class Version implements Serializable {
148148
public static final int V_1_0_0_Beta2_ID = /*00*/1000002;
149149
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);
150150
public static final int V_1_0_0_RC1_ID = /*00*/1000051;
151-
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);
151+
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);
152152

153153
public static final Version CURRENT = V_1_0_0_RC1;
154154

0 commit comments

Comments
 (0)