8
0

Accepting request 737899 from devel:languages:perl:autoupdate

- updated to 1.999817
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999817 2019-10-11
  
   * Avoid non-integers in intermediate computations in Math::BigInt::Calc. This
     causes errors due to rounding issues, e.g., 47265625999999999 / 1000000000
     is 47265626 with double precision.
  
   * Remove api_version() and the corresponding test file. There is no need to
     check which methods are supported by a backend library now that each backend
     library is a subclass of Math::BigInt::Lib. Methods not provided in the
     backend library are provided by the parent class.
  
   * Add to_ieee745() and from_ieee754().
  
   * Add backermann() and ackermann() for the Ackermann function.
  
   * Add buparrow() and uparrow() for Knuth's up-arrow notation.
  
   * Add information about the github repository.
  
   * Update links in SUPPORT section in POD.
  
   * Fix bpow(). It returned NaN when it should truncate to zero.
  
   * Make blsft() in Math::BigInt allow bases up until the largest unsigned
     integer.
  
   * Make _lsft() in Math::BigInt::Calc handle an arbitrarily large base.
  
   * Add new methods bdigitsum() and digitsum() to Math::BigInt. Add new method
     _digitsum() to Math::BigInt::Lib.
  
   * Add new methods is_non_negative() and is_non_positive().
  
   * Extend the default collation sequence used by to_base() and from_base() to
     all the 94 printable ASCII characters except blank/space.
  
   * Make new() in Math::BigFloat handle octal floating point numbers.
  
   * Slightly more robust t/01load.t.
  
   * Remove unused variables.
  
   * Miscellaneous code cleanup.

OBS-URL: https://build.opensuse.org/request/show/737899
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=70
This commit is contained in:
2019-10-15 10:47:20 +00:00
committed by Git OBS Bridge
parent f0bd3e7627
commit 44fd6481d2
4 changed files with 58 additions and 7 deletions

View File

@@ -1,3 +1,53 @@
-------------------------------------------------------------------
Sat Oct 12 13:43:38 UTC 2019 - <timueller+perl@suse.de>
- updated to 1.999817
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
1.999817 2019-10-11
* Avoid non-integers in intermediate computations in Math::BigInt::Calc. This
causes errors due to rounding issues, e.g., 47265625999999999 / 1000000000
is 47265626 with double precision.
* Remove api_version() and the corresponding test file. There is no need to
check which methods are supported by a backend library now that each backend
library is a subclass of Math::BigInt::Lib. Methods not provided in the
backend library are provided by the parent class.
* Add to_ieee745() and from_ieee754().
* Add backermann() and ackermann() for the Ackermann function.
* Add buparrow() and uparrow() for Knuth's up-arrow notation.
* Add information about the github repository.
* Update links in SUPPORT section in POD.
* Fix bpow(). It returned NaN when it should truncate to zero.
* Make blsft() in Math::BigInt allow bases up until the largest unsigned
integer.
* Make _lsft() in Math::BigInt::Calc handle an arbitrarily large base.
* Add new methods bdigitsum() and digitsum() to Math::BigInt. Add new method
_digitsum() to Math::BigInt::Lib.
* Add new methods is_non_negative() and is_non_positive().
* Extend the default collation sequence used by to_base() and from_base() to
all the 94 printable ASCII characters except blank/space.
* Make new() in Math::BigFloat handle octal floating point numbers.
* Slightly more robust t/01load.t.
* Remove unused variables.
* Miscellaneous code cleanup.
-------------------------------------------------------------------
Thu Nov 8 06:33:06 UTC 2018 - Stephan Kulow <coolo@suse.com>