This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade Math::BigRat from version 0.260805 to 0.2609
authorSteve Hay <steve.m.hay@googlemail.com>
Wed, 7 Dec 2016 08:30:29 +0000 (08:30 +0000)
committerSteve Hay <steve.m.hay@googlemail.com>
Wed, 7 Dec 2016 23:19:28 +0000 (23:19 +0000)
Porting/Maintainers.pl
cpan/Math-BigRat/lib/Math/BigRat.pm
cpan/Math-BigRat/t/Math/BigRat/Test.pm

index 53489e6..3f57c2a 100755 (executable)
@@ -800,10 +800,9 @@ use File::Glob qw(:case);
     },
 
     'Math::BigRat' => {
     },
 
     'Math::BigRat' => {
-        'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.260805.tar.gz',
+        'DISTRIBUTION' => 'PJACKLAM/Math-BigRat-0.2609.tar.gz',
         'FILES'        => q[cpan/Math-BigRat],
         'EXCLUDED'     => [
         'FILES'        => q[cpan/Math-BigRat],
         'EXCLUDED'     => [
-            qr{^inc/},
             qr{^t/author-},
             qw( t/00sig.t
                 t/01load.t
             qr{^t/author-},
             qw( t/00sig.t
                 t/01load.t
index 569feb5..f4a4d2b 100644 (file)
@@ -20,8 +20,7 @@ use Carp ();
 
 use Math::BigFloat '1.999718';
 
 
 use Math::BigFloat '1.999718';
 
-our $VERSION = '0.260805';
-$VERSION = eval $VERSION;
+our $VERSION = '0.2609';
 
 our @ISA = qw(Math::BigFloat);
 
 
 our @ISA = qw(Math::BigFloat);
 
@@ -2751,8 +2750,16 @@ L<Math::BigInt::FastCalc>, L<Math::BigInt::GMP>, and L<Math::BigInt::Pari>.
 
 =head1 AUTHORS
 
 
 =head1 AUTHORS
 
-(C) by Tels L<http://bloodgate.com/> 2001 - 2009.
+=over 4
+
+=item *
+
+Tels L<http://bloodgate.com/> 2001-2009.
 
 
-Currently maintained by Peter John Acklam <pjacklam@online.no>.
+=item *
+
+Maintained by Peter John Acklam <pjacklam@online.no> 2011-
+
+=back
 
 =cut
 
 =cut
index b7150c4..c61b652 100644 (file)
@@ -7,17 +7,17 @@ use warnings;
 use Exporter;
 use Math::BigRat;
 use Math::BigFloat;
 use Exporter;
 use Math::BigRat;
 use Math::BigFloat;
-our ($VERSION, @ISA, $accuracy, $precision, $round_mode, $div_scale);
 
 
-@ISA = qw(Math::BigRat Exporter);
-$VERSION = 0.04;
+our @ISA = qw(Math::BigRat Exporter);
+our $VERSION = '0.04';
 
 use overload;          # inherit overload from BigRat
 
 # Globals
 
 use overload;          # inherit overload from BigRat
 
 # Globals
-$accuracy = $precision = undef;
-$round_mode = 'even';
-$div_scale = 40;
+our $accuracy   = undef;
+our $precision  = undef;
+our $round_mode = 'even';
+our $div_scale  = 40;
 
 my $class = 'Math::BigRat::Test';
 
 
 my $class = 'Math::BigRat::Test';