Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 24233 invoked from network); 25 Mar 2010 14:38:25 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Mar 2010 14:38:25 -0000 Received: (qmail 90801 invoked by uid 500); 25 Mar 2010 11:51:45 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 90733 invoked by uid 500); 25 Mar 2010 11:51:44 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 90725 invoked by uid 99); 25 Mar 2010 11:51:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Mar 2010 11:51:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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, 25 Mar 2010 11:51:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EBB4423889F1; Thu, 25 Mar 2010 11:51:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r927356 - in /commons/proper/math/trunk/src: main/resources/templates/math-release-notes.vm site/xdoc/changes.xml Date: Thu, 25 Mar 2010 11:51:19 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100325115119.EBB4423889F1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Thu Mar 25 11:51:19 2010 New Revision: 927356 URL: http://svn.apache.org/viewvc?rev=927356&view=rev Log: Translate double-space into new-line when generating release notes Modified: commons/proper/math/trunk/src/main/resources/templates/math-release-notes.vm commons/proper/math/trunk/src/site/xdoc/changes.xml Modified: commons/proper/math/trunk/src/main/resources/templates/math-release-notes.vm URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/resources/templates/math-release-notes.vm?rev=927356&r1=927355&r2=927356&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/resources/templates/math-release-notes.vm (original) +++ commons/proper/math/trunk/src/main/resources/templates/math-release-notes.vm Thu Mar 25 11:51:19 2010 @@ -18,7 +18,9 @@ Apache ${project.name} ${version} RELEASE NOTES -${release.description} +## Hack to improve layout: replace all pairs of spaces with a single new-line +$release.description.replaceAll(" ", " +")) #if ($release.getActions().size() == 0) No changes defined in this version. Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=927356&r1=927355&r2=927356&view=diff ============================================================================== --- commons/proper/math/trunk/src/site/xdoc/changes.xml (original) +++ commons/proper/math/trunk/src/site/xdoc/changes.xml Thu Mar 25 11:51:19 2010 @@ -44,26 +44,29 @@ The type attribute can be add,u Commons Math Release Notes - + + This release contains some minor API compatibility breaks with version 2.0: + the return type of RealVector.copy() has been changed to AbstractRealVector; + the no-argument constructor of MatrixUtils() has been made private; + the mapXxxToSelf methods of OpenMapRealVector have been removed and some method return types have been changed in this class; + new methods have been added to the RealVector interface; + several fields in AdaptiveStepSizeIntegrator have been made final; + DummyStepInterpolator requires an additional argument for one of its constructors; + some protected fields have been removed from AbstractLeastSquaresOptimizer, AbstractScalarDifferentiableOptimizer and AbstractLinearOptimizer; + and the isOptimal(SimplexTableau) method has been removed from SimplexSolver. "> Added method to clear the list of observations in CurveFitter.