You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/10/29 18:38:08 UTC

svn commit: r1635220 - in /lucene/dev/branches/lucene_solr_4_10: lucene/ lucene/core/src/java/org/apache/lucene/util/ lucene/core/src/test/org/apache/lucene/index/ solr/ solr/example/example-DIH/solr/db/conf/ solr/example/example-DIH/solr/mail/conf/ so...

Author: mikemccand
Date: Wed Oct 29 17:38:07 2014
New Revision: 1635220

URL: http://svn.apache.org/r1635220
Log:
4.10.2 release

Added:
    lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.cfs.zip   (with props)
    lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.nocfs.zip   (with props)
Modified:
    lucene/dev/branches/lucene_solr_4_10/lucene/CHANGES.txt
    lucene/dev/branches/lucene_solr_4_10/lucene/common-build.xml
    lucene/dev/branches/lucene_solr_4_10/lucene/core/src/java/org/apache/lucene/util/Version.java
    lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java
    lucene/dev/branches/lucene_solr_4_10/solr/CHANGES.txt
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/db/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/mail/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/rss/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/solr/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/tika/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core0/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core1/conf/solrconfig.xml
    lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml

Modified: lucene/dev/branches/lucene_solr_4_10/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/CHANGES.txt?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/lucene/CHANGES.txt (original)
+++ lucene/dev/branches/lucene_solr_4_10/lucene/CHANGES.txt Wed Oct 29 17:38:07 2014
@@ -3,6 +3,8 @@ Lucene Change Log
 For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
+======================= Lucene 4.10.3 ======================
+
 ======================= Lucene 4.10.2 ======================
 
 Bug fixes

Modified: lucene/dev/branches/lucene_solr_4_10/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/common-build.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/lucene/common-build.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/lucene/common-build.xml Wed Oct 29 17:38:07 2014
@@ -29,7 +29,7 @@
   <!-- !!! RELEASE MANAGER: Change version numbers only here: !!! -->
   
   <!-- The base version of the next release (including bugfix number, e.g., x.y.z+): -->
-  <property name="version.base" value="4.10.2"/>
+  <property name="version.base" value="4.10.3"/>
   
   <!-- !!! RELEASE MANAGER: Don't change anything after this line! !!! -->
 

Modified: lucene/dev/branches/lucene_solr_4_10/lucene/core/src/java/org/apache/lucene/util/Version.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/core/src/java/org/apache/lucene/util/Version.java?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/lucene/core/src/java/org/apache/lucene/util/Version.java (original)
+++ lucene/dev/branches/lucene_solr_4_10/lucene/core/src/java/org/apache/lucene/util/Version.java Wed Oct 29 17:38:07 2014
@@ -237,9 +237,16 @@ public final class Version {
 
   /**
    * Match settings and bugs in Lucene's 4.10.2 release.
+   * @deprecated Use latest
    */
+  @Deprecated
   public static final Version LUCENE_4_10_2 = new Version(4, 10, 2);
 
+  /**
+   * Match settings and bugs in Lucene's 4.10.2 release.
+   */
+  public static final Version LUCENE_4_10_3 = new Version(4, 10, 3);
+
   /* Add new constants for later versions **here** to respect order! */
 
   // To add a new version:
@@ -261,7 +268,7 @@ public final class Version {
    * some defaults may have changed and may break functionality 
    * in your application.
    */
-  public static final Version LATEST = LUCENE_4_10_2;
+  public static final Version LATEST = LUCENE_4_10_3;
 
   /**
    * Constant for backwards compatibility.

Modified: lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java (original)
+++ lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java Wed Oct 29 17:38:07 2014
@@ -96,8 +96,7 @@ public class TestBackwardsCompatibility 
   // <sysproperty> under the "test-macro" <macrodef>.
   //
   // Be sure to create the indexes with the actual format:
-  //  ant test -Dtestcase=TestBackwardsCompatibility -Dversion=x.y.z
-  //      -Dtests.codec=LuceneXY -Dtests.postingsformat=LuceneXY -Dtests.docvaluesformat=LuceneXY
+  //  ant test -Dtestcase=TestBackwardsCompatibility -Dversion=x.y.z -Dtests.codec=LuceneXY -Dtests.postingsformat=LuceneXY -Dtests.docvaluesformat=LuceneXY
   //
   // Zip up the generated indexes:
   //
@@ -268,7 +267,9 @@ public class TestBackwardsCompatibility 
                                     "410.cfs",
                                     "410.nocfs",
                                     "4101.cfs",
-                                    "4101.nocfs"
+                                    "4101.nocfs",
+                                    "4102.cfs",
+                                    "4102.nocfs",
   };
   
   final String[] unsupportedNames = {"19.cfs",

Added: lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.cfs.zip
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.cfs.zip?rev=1635220&view=auto
==============================================================================
Binary file - no diff available.

Added: lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.nocfs.zip
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/lucene/core/src/test/org/apache/lucene/index/index.4102.nocfs.zip?rev=1635220&view=auto
==============================================================================
Binary file - no diff available.

Modified: lucene/dev/branches/lucene_solr_4_10/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/CHANGES.txt?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/CHANGES.txt (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/CHANGES.txt Wed Oct 29 17:38:07 2014
@@ -17,6 +17,8 @@ In this release, there is an example Sol
 servlet container in the directory named "example".
 See the tutorial at http://lucene.apache.org/solr/tutorial.html
 
+==================  4.10.3 ==================
+
 ==================  4.10.2 ==================
 
 Bug Fixes

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/db/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/db/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/db/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/db/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/mail/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/mail/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/mail/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/mail/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/rss/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/rss/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/rss/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/rss/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/solr/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/solr/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/solr/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/tika/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/tika/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/tika/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-DIH/solr/tika/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core0/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core0/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core0/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core0/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -21,7 +21,7 @@
  It is *not* a good example to work from. 
 -->
 <config>
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
   <!--  The DirectoryFactory to use for indexes.
         solr.StandardDirectoryFactory, the default, is filesystem based.
         solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core1/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core1/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core1/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/multicore/core1/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -21,7 +21,7 @@
  It is *not* a good example to work from. 
 -->
 <config>
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
   <!--  The DirectoryFactory to use for indexes.
         solr.StandardDirectoryFactory, the default, is filesystem based.
         solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->

Modified: lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml?rev=1635220&r1=1635219&r2=1635220&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_4_10/solr/example/solr/collection1/conf/solrconfig.xml Wed Oct 29 17:38:07 2014
@@ -35,7 +35,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
   -->
-  <luceneMatchVersion>4.10.2</luceneMatchVersion>
+  <luceneMatchVersion>4.10.3</luceneMatchVersion>
 
   <!-- <lib/> directives can be used to instruct Solr to load any Jars
        identified and use them to resolve any "plugins" specified in