# New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #98280] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=98280 > - For simplicity, use same version number 1.997 in all .pm files to match the upcoming release 1.997 of the Math-BigInt distribution. - Avoid "our $VERSION ..." in Math::BigInt::Calc, since we're still trying to be Perl 5.6.2 compatible. --- dist/Math-BigInt/lib/Math/BigFloat.pm | 2 +- dist/Math-BigInt/lib/Math/BigInt/Calc.pm | 3 ++- dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/dist/Math-BigInt/lib/Math/BigFloat.pm b/dist/Math-BigInt/lib/Math/BigFloat.pm index b642189..c860582 100644 --- a/dist/Math-BigInt/lib/Math/BigFloat.pm +++ b/dist/Math-BigInt/lib/Math/BigFloat.pm @@ -12,7 +12,7 @@ package Math::BigFloat; # _a : accuracy # _p : precision -$VERSION = '1.996'; +$VERSION = '1.997'; require 5.006002; require Exporter; diff --git a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm index 25f9a3b..3175c9b 100644 --- a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm +++ b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm @@ -3,8 +3,9 @@ package Math::BigInt::Calc; use 5.006002; use strict; # use warnings; # dont use warnings for older Perls +use vars qw/$VERSION/; -our $VERSION = '1.993'; +$VERSION = '1.997'; # Package to store unsigned big integers in decimal and do math with them diff --git a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm index ee0b677..1d754ff 100644 --- a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm +++ b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm @@ -5,7 +5,7 @@ use strict; # use warnings; # dont use warnings for older Perls use vars qw/$VERSION/; -$VERSION = '1.993'; +$VERSION = '1.997'; package Math::BigInt; -- 1.7.5.1Thread Previous | Thread Next