Update changes with recent fixes

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1060980 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-01-19 20:42:40 +00:00
parent c1d889840c
commit 0a9d609f98

View File

@ -52,6 +52,22 @@ The <action> type attribute can be add,update,fix,remove.
If the output is not quite correct, check for invisible trailing spaces!
-->
<release version="3.0" date="TBD" description="TBD">
<action dev="sebb" type="fix" issue="MATH-486">
FastMath toRadian and toDegree don't handle large double numbers well
</action>
<action dev="sebb" type="fix" issue="MATH-483">
FastMath does not handle all special cases correctly
</action>
<action dev="sebb" type="fix" issue="MATH-480">
Fix ulp(Infinity) to return Infinity rather than NaN
</action>
<action dev="sebb" type="fix" issue="MATH-479">
FastMath.signum(-0.0) does not agree with Math.signum(-0.0)
</action>
<action dev="sebb" type="fix" issue="MATH-478">
FastMath is not an exact replacement for StrictMath
(partially fixed) Add signum(float), ulp(float)
</action>
<action dev="sebb" type="fix" issue="MATH-482">
FastMath.max(50.0f, -50.0f) => -50.0f; should be +50.0f
Fixed FastMath.max(float, float) so it returns correct value.