Przeglądaj źródła

release [1.0.0.RC1]

Alexander Reelsen 11 lat temu
rodzic
commit
c6155c5142

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

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

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

+ 1 - 1
src/main/java/org/elasticsearch/Version.java

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