diff options
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/bignum/lib/Math/BigFloat/Trace.pm | 2 | ||||
-rw-r--r-- | cpan/bignum/lib/Math/BigInt/Trace.pm | 2 | ||||
-rw-r--r-- | cpan/bignum/lib/bigint.pm | 2 | ||||
-rw-r--r-- | cpan/bignum/lib/bignum.pm | 2 | ||||
-rw-r--r-- | cpan/bignum/lib/bigrat.pm | 2 | ||||
-rw-r--r-- | cpan/bignum/t/scope_f.t | 1 |
6 files changed, 5 insertions, 6 deletions
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'); } - |