Author: sebb
Date: Thu Mar 25 03:29:14 2010
New Revision: 927264
URL: http://svn.apache.org/viewvc?rev=927264&view=rev
Log:
Re-arrange description to make it easier to paste into the generated release
notes
(It's also a bit easier to read in the source).
Modified:
commons/proper/math/trunk/src/site/xdoc/changes.xml
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=927264&r1=927263&r2=927264&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Thu Mar 25 03:29:14 2010
@@ -28,6 +28,13 @@ release process easy :-).
3. Use the report generated by the maven-changelog-plugin to see all
SVN commits. TBA how to use this with SVN.
+To generate the release notes from this file:
+
+mvn changes:announcement-generate
+mv target/announcement/math-release-notes.vm RELEASE_NOTES.txt
+then tweak the formatting
+(e.g. copy/paste the description to replace the one-line version)
+and commit
The <action> type attribute can be add,update,fix,remove.
-->
@@ -37,19 +44,26 @@ The <action> type attribute can be add,u
<title>Commons Math Release Notes</title>
</properties>
<body>
- <release version="2.1" date="TBD" description="This is primarily a
maintenance release, but
- it also includes new features and enhancements. Users of version 2.0
are encouraged to
- upgrade to 2.1, as this release includes some important bug fixes. See
the detailed list
- of changes below for full description of all bug fixes and enhancements.
- 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. ">
+ <!-- The description is formatted so as to make it easy to paste into the
generated release notes -->
+ <release version="2.1" date="TBD" description="
+This is primarily a maintenance release, but it also includes new features and
enhancements.
+
+Users of version 2.0 are encouraged to upgrade to 2.1, as this release
includes some important bug fixes.
+
+See the detailed list of changes below for full description of all bug fixes
and enhancements.
+
+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.
">
<action dev="erans" type="update" issue="MATH-356">
Added method to clear the list of observations in CurveFitter.
</action>