You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by bd...@apache.org on 2007/04/30 07:38:49 UTC

svn commit: r533593 - /lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java

Author: bdelacretaz
Date: Sun Apr 29 22:38:49 2007
New Revision: 533593

URL: http://svn.apache.org/viewvc?view=rev&rev=533593
Log:
Forgot to change SimplePostTool's version number

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java?view=diff&rev=533593&r1=533592&r2=533593
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java Sun Apr 29 22:38:49 2007
@@ -43,7 +43,7 @@
 public class SimplePostTool {
   public static final String DEFAULT_POST_URL = "http://localhost:8983/solr/update";
   public static final String POST_ENCODING = "UTF-8";
-  public static final String VERSION_OF_THIS_TOOL = "1.0";
+  public static final String VERSION_OF_THIS_TOOL = "1.1";
   private static final String SOLR_OK_RESPONSE_EXCERPT = "<int name=\"status\">0</int>";
   protected URL solrUrl;