Return-Path: X-Original-To: apmail-lucene-commits-archive@www.apache.org Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9AE2511AA6 for ; Thu, 21 Aug 2014 21:10:39 +0000 (UTC) Received: (qmail 48702 invoked by uid 500); 21 Aug 2014 21:10:39 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 48693 invoked by uid 99); 21 Aug 2014 21:10:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2014 21:10:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED 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; Thu, 21 Aug 2014 21:10:38 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2ACF623888E2; Thu, 21 Aug 2014 21:10:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1619589 - /lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java Date: Thu, 21 Aug 2014 21:10:18 -0000 To: commits@lucene.apache.org From: rjernst@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140821211018.2ACF623888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjernst Date: Thu Aug 21 21:10:17 2014 New Revision: 1619589 URL: http://svn.apache.org/r1619589 Log: Fix 4.11.0 constant to be latest and deprecate 4.10.0 constant Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java?rev=1619589&r1=1619588&r2=1619589&view=diff ============================================================================== --- lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java (original) +++ lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/Version.java Thu Aug 21 21:10:17 2014 @@ -215,7 +215,9 @@ public final class Version { /** * Match settings and bugs in Lucene's 4.10 release. + * @deprecated (4.11) Use latest */ + @Deprecated public static final Version LUCENE_4_10_0 = new Version(4, 10, 0); /** @@ -242,7 +244,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_0; + public static final Version LATEST = LUCENE_4_11_0; /** * Constant for backwards compatibility.