2015-10-29 10:26:32 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Oct 29 10:06:14 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999706
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
2015-10-28 07:12:45 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 27 10:08:46 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999705
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
2015-09-26 19:19:02 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Sep 26 08:53:16 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999704
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
|
|
|
2015-09-25 v1.999704 pjacklam
|
|
|
|
|
|
|
|
* objectify() in lib/Math/BigInt.pm now uses 'isa' not 'eq' to check object
|
|
|
|
relationship. This is necessary for correct handling of subclasses.
|
|
|
|
|
|
|
|
* objectify() in lib/Math/BigInt.pm no longer expects as_int(), as_number()
|
|
|
|
and as_float() to return objects, but allows them to return numbers
|
|
|
|
formatted as strings. This is used by some other modules on CPAN.
|
|
|
|
|
|
|
|
* Better documentation of as_int() and as_number() in lib/Math/BigInt.pm.
|
|
|
|
|
|
|
|
* Add documentation for as_float() in lib/Math/BigFloat.pm
|
|
|
|
|
|
|
|
* Added test files t/objectify_mbf.t and t/objectify_mbi.t.
|
|
|
|
|
2015-09-23 07:04:07 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Sep 22 09:12:28 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999703
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
|
|
|
2015-09-21 v1.999703 pjacklam
|
|
|
|
|
|
|
|
* Fix blog() in Math::BigInt and Math::BigFloat to work correctly regardless
|
|
|
|
of the base.
|
|
|
|
|
|
|
|
* Correct existing tests in bigintpm.inc and bigfltpm.inc.
|
|
|
|
|
|
|
|
* Update test plans (number of tests) in t/bare_mbi.t, t/bigintpm.t, and
|
|
|
|
t/sub_mbi.t.
|
|
|
|
|
|
|
|
* Add test files t/blog-mbf.t and t/blog-mbi.t for better testing of the
|
|
|
|
blog() methods.
|
|
|
|
|
2015-09-20 13:49:35 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Sep 20 09:00:16 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999702
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
2015-09-01 09:49:27 +00:00
|
|
|
-------------------------------------------------------------------
|
2015-09-14 19:30:16 +00:00
|
|
|
Mon Sep 14 08:40:14 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.999701
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
|
|
|
2015-09-11 v1.999701 pjacklam
|
|
|
|
|
|
|
|
* The POD documentation, as well as the comments in the code, said that
|
|
|
|
$x->bdiv($y) in list context should return quotient $q and remainder $r so
|
|
|
|
that $x = $q * $y + $r, and that the remainder (modulo) $r should correspond
|
|
|
|
to Perl's % operator as well as the bmod() method. This has not been the
|
|
|
|
actual behaviour. This is now fixed.
|
|
|
|
|
|
|
|
* Clearer POD documentation for the bdiv() and bmod() methods.
|
|
|
|
|
|
|
|
* All input values in the range (-1,1) written as a decimal number, e.g.,
|
|
|
|
-0.75 and 0.5, now return NaN, not 0.
|
|
|
|
|
|
|
|
* Input values with a large (absolute value) negative exponent, e.g.,
|
|
|
|
1e-9999999, now return NaN. The former behaviour was to die with the message
|
|
|
|
"Quantifier in {,} bigger than 32766 in regex; marked by ..."
|
|
|
|
|
|
|
|
* Intermediate computations in blog() increased the number of digits
|
|
|
|
significantly in some cases. Now reduce the number of digits by rounding.
|
|
|
|
However, keep some extra digits for remaining intermediate computations
|
|
|
|
before the final rounding.
|
|
|
|
|
|
|
|
* When $x is a Math::BigFloat, $x -> bceil() and $x -> bint() for -1 < $x < 0
|
|
|
|
returned -0. Negative zero is never used by Math::Big(Int|Float), and care
|
|
|
|
has been taken to avoid it, so this bug is surely an oversight.
|
|
|
|
|
|
|
|
* Explicitly specify the backend (lib => 'Calc') in t/mbimbf.t for easier
|
|
|
|
release management of the backend distributions.
|
|
|
|
|
|
|
|
* Add "use warnings" to test scripts, since Perl 5.6.2 is required anyway, and
|
|
|
|
"use warnings" was introduced in Perl 5.6.1.
|
|
|
|
|
|
|
|
* Modified test scripts so the difference between the test files in the
|
|
|
|
Math-BigInt distribution and the backend distributions are as few and as
|
|
|
|
small as possible. This makes for easier release management.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2015-09-01 09:49:27 +00:00
|
|
|
Tue Sep 1 09:08:11 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to 1.9997
|
|
|
|
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
The changes are now grouped by distribution.
|
|
|
|
|
2014-05-29 11:39:13 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu May 29 10:18:57 UTC 2014 - stephan.barth@suse.com
|
|
|
|
|
|
|
|
- update to version 1.9993 from 1.997
|
|
|
|
Changes from upstream:
|
|
|
|
* Synchronise with blead perl. For a list of recent changes, see
|
|
|
|
http://perl5.git.perl.org/perl.git/history/HEAD:/dist/Math-BigInt
|
|
|
|
* Removed examples/hailstone.pl which required the obsolete Math::Big
|
|
|
|
|
2013-06-11 13:11:12 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jun 11 13:10:57 UTC 2013 - coolo@suse.com
|
|
|
|
|
|
|
|
- rebuild against perl 5.18
|
|
|
|
|
2011-11-18 12:32:20 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Nov 18 12:31:43 UTC 2011 - coolo@suse.com
|
|
|
|
|
|
|
|
- update to 1.997
|
|
|
|
* Document actual behaviour of from_xxx() methods. [perl #85334] (Peter John
|
|
|
|
Acklam)
|
|
|
|
* Make bmuladd() able to handle third arg properly. [perl #85482] (Peter John
|
|
|
|
Acklam)
|
|
|
|
* Add sign function bsgn() as a complement to babs(). (Peter John Acklam)
|
|
|
|
* Fix objectify()'s handling of "foreign objects". (RT #16221 and #52124)
|
|
|
|
(Peter John Acklam)
|
|
|
|
* Rewrap some verbatim pod in Math::BigInt. (Father Chrysostomos)
|
|
|
|
* Correct links to sections. (Alexandr Ciornii)
|
|
|
|
* Remove incorrect formatting inside verbatim paragraphs. (Alexandr Ciornii)
|
|
|
|
* Upgrade bundled modules in "inc" to latest version. (Peter John Acklam)
|
|
|
|
* Include "^MYMETA\.(yml|json)\z" in MANIFEST.SKIP. Whereas META.* are
|
|
|
|
generated by the distribution author at packaging time, MYMETA.* are
|
|
|
|
generated by the end user at configure time after any dynamic dependencies
|
|
|
|
are known. (Peter John Acklam)
|
|
|
|
|
2011-04-29 07:35:37 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Apr 29 07:35:32 UTC 2011 - coolo@opensuse.org
|
|
|
|
|
|
|
|
- initial package 1.993
|
|
|
|
* created by cpanspec 1.78.04
|
|
|
|
|