summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2016-12-15 14:39:45 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2016-12-15 14:39:45 +0000
commitd96523cf661a4bd422eeb7ca06028da583f7cc02 (patch)
tree91412f79a06d86423ad8edb749c248d89d087845
parent15f1cdaa794f4296441c49c43bb734aa7e2070e4 (diff)
downloadperl-d96523cf661a4bd422eeb7ca06028da583f7cc02.tar.gz
Update bignum to CPAN version 0.47
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/bignum/lib/Math/BigFloat/Trace.pm2
-rw-r--r--cpan/bignum/lib/Math/BigInt/Trace.pm2
-rw-r--r--cpan/bignum/lib/bigint.pm2
-rw-r--r--cpan/bignum/lib/bignum.pm2
-rw-r--r--cpan/bignum/lib/bigrat.pm2
-rw-r--r--cpan/bignum/t/scope_f.t1
7 files changed, 6 insertions, 7 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index b3a4d6439c..f9b20e810a 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -188,7 +188,7 @@ use File::Glob qw(:case);
},
'bignum' => {
- 'DISTRIBUTION' => 'PJACKLAM/bignum-0.45.tar.gz',
+ 'DISTRIBUTION' => 'PJACKLAM/bignum-0.47.tar.gz',
'FILES' => q[cpan/bignum],
'EXCLUDED' => [
qr{^t/author-},
diff --git a/cpan/bignum/lib/Math/BigFloat/Trace.pm b/cpan/bignum/lib/Math/BigFloat/Trace.pm
index e08c4a5d46..13ec47f274 100644
--- a/cpan/bignum/lib/Math/BigFloat/Trace.pm
+++ b/cpan/bignum/lib/Math/BigFloat/Trace.pm
@@ -13,7 +13,7 @@ our ($accuracy, $precision, $round_mode, $div_scale);
our @ISA = qw(Exporter Math::BigFloat);
-our $VERSION = '0.45';
+our $VERSION = '0.47';
use overload; # inherit overload from Math::BigFloat
diff --git a/cpan/bignum/lib/Math/BigInt/Trace.pm b/cpan/bignum/lib/Math/BigInt/Trace.pm
index c20c40fd76..dc915983f0 100644
--- a/cpan/bignum/lib/Math/BigInt/Trace.pm
+++ b/cpan/bignum/lib/Math/BigInt/Trace.pm
@@ -13,7 +13,7 @@ our ($accuracy, $precision, $round_mode, $div_scale);
our @ISA = qw(Exporter Math::BigInt);
-our $VERSION = '0.45';
+our $VERSION = '0.47';
use overload; # inherit overload from Math::BigInt
diff --git a/cpan/bignum/lib/bigint.pm b/cpan/bignum/lib/bigint.pm
index b78ad4ba02..fa9a705b6e 100644
--- a/cpan/bignum/lib/bigint.pm
+++ b/cpan/bignum/lib/bigint.pm
@@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;
-our $VERSION = '0.45';
+our $VERSION = '0.47';
use Exporter;
our @ISA = qw( Exporter );
diff --git a/cpan/bignum/lib/bignum.pm b/cpan/bignum/lib/bignum.pm
index b7b535fa49..4e09dcb722 100644
--- a/cpan/bignum/lib/bignum.pm
+++ b/cpan/bignum/lib/bignum.pm
@@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;
-our $VERSION = '0.45';
+our $VERSION = '0.47';
use Exporter;
our @ISA = qw( bigint );
diff --git a/cpan/bignum/lib/bigrat.pm b/cpan/bignum/lib/bigrat.pm
index d6ddec75f3..b0c36643a6 100644
--- a/cpan/bignum/lib/bigrat.pm
+++ b/cpan/bignum/lib/bigrat.pm
@@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;
-our $VERSION = '0.45';
+our $VERSION = '0.47';
use Exporter;
our @ISA = qw( bigint );
diff --git a/cpan/bignum/t/scope_f.t b/cpan/bignum/t/scope_f.t
index 23ffc3a665..e932ea2b9f 100644
--- a/cpan/bignum/t/scope_f.t
+++ b/cpan/bignum/t/scope_f.t
@@ -32,4 +32,3 @@ SKIP: {
isnt (ref(hex(9)), 'Math::BigInt', 'hex is not overloaded');
isnt (ref(oct(07)), 'Math::BigInt', 'oct is not overloaded');
}
-