Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 17493 invoked from network); 16 Nov 2009 14:03:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Nov 2009 14:03:29 -0000 Received: (qmail 10532 invoked by uid 500); 16 Nov 2009 14:03:29 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 10457 invoked by uid 500); 16 Nov 2009 14:03:29 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 10448 invoked by uid 99); 16 Nov 2009 14:03:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 14:03:29 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 14:03:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6DA0223888C2; Mon, 16 Nov 2009 14:03:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r880756 - in /lucene/java/trunk: CHANGES.txt common-build.xml contrib/CHANGES.txt src/java/org/apache/lucene/util/Constants.java src/java/org/apache/lucene/util/Version.java Date: Mon, 16 Nov 2009 14:03:06 -0000 To: java-commits@lucene.apache.org From: uschindler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091116140306.6DA0223888C2@eris.apache.org> Author: uschindler Date: Mon Nov 16 14:03:05 2009 New Revision: 880756 URL: http://svn.apache.org/viewvc?rev=880756&view=rev Log: change version in trunk to 3.1-dev Modified: lucene/java/trunk/CHANGES.txt lucene/java/trunk/common-build.xml lucene/java/trunk/contrib/CHANGES.txt lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java lucene/java/trunk/src/java/org/apache/lucene/util/Version.java Modified: lucene/java/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?rev=880756&r1=880755&r2=880756&view=diff ============================================================================== --- lucene/java/trunk/CHANGES.txt (original) +++ lucene/java/trunk/CHANGES.txt Mon Nov 16 14:03:05 2009 @@ -1,7 +1,9 @@ Lucene Change Log $Id$ -======================= Trunk (not yet released) ======================= +======================= Trunk (not yet released) ========================= + +======================= Release 3.0.0 (2009-11-25) ======================= Changes in backwards compatibility policy Modified: lucene/java/trunk/common-build.xml URL: http://svn.apache.org/viewvc/lucene/java/trunk/common-build.xml?rev=880756&r1=880755&r2=880756&view=diff ============================================================================== --- lucene/java/trunk/common-build.xml (original) +++ lucene/java/trunk/common-build.xml Mon Nov 16 14:03:05 2009 @@ -40,9 +40,9 @@ - + - + @@ -60,8 +60,8 @@ - - + + Modified: lucene/java/trunk/contrib/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/CHANGES.txt?rev=880756&r1=880755&r2=880756&view=diff ============================================================================== --- lucene/java/trunk/contrib/CHANGES.txt (original) +++ lucene/java/trunk/contrib/CHANGES.txt Mon Nov 16 14:03:05 2009 @@ -1,6 +1,8 @@ Lucene contrib change Log -======================= Trunk (not yet released) ======================= +======================= Trunk (not yet released) ========================= + +======================= Release 3.0.0 (2009-11-25) ======================= Changes in backwards compatibility policy Modified: lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java?rev=880756&r1=880755&r2=880756&view=diff ============================================================================== --- lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java (original) +++ lucene/java/trunk/src/java/org/apache/lucene/util/Constants.java Mon Nov 16 14:03:05 2009 @@ -70,7 +70,7 @@ return s.toString(); } - public static final String LUCENE_MAIN_VERSION = ident("3.0"); + public static final String LUCENE_MAIN_VERSION = ident("3.1"); public static final String LUCENE_VERSION; static { Modified: lucene/java/trunk/src/java/org/apache/lucene/util/Version.java URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/util/Version.java?rev=880756&r1=880755&r2=880756&view=diff ============================================================================== --- lucene/java/trunk/src/java/org/apache/lucene/util/Version.java (original) +++ lucene/java/trunk/src/java/org/apache/lucene/util/Version.java Mon Nov 16 14:03:05 2009 @@ -44,6 +44,9 @@ /** Match settings and bugs in Lucene's 3.0 release. */ LUCENE_30, + + /** Match settings and bugs in Lucene's 3.1 release. */ + LUCENE_31, /* Add new constants for later versions **here** to respect order! */