diff options
author | Peter John Acklam <pjacklam@online.no> | 2011-09-02 13:00:36 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-09-02 13:15:29 -0700 |
commit | 159b753f24200281893831c0750e7ec0c8d69b0f (patch) | |
tree | a4ee516f87254e07ca6946ccb2f78fb0ad24b520 /dist | |
parent | 0f88d3933d3f97ed63e397e26e9d3e1674ece913 (diff) | |
download | perl-159b753f24200281893831c0750e7ec0c8d69b0f.tar.gz |
[perl #98280] Use same version number 1.997 in all .pm files.
- For simplicity, use same version number 1.997 in all .pm files to match the
upcoming release 1.997 of the Math-BigInt distribution.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigFloat.pm | 2 | ||||
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt/Calc.pm | 2 | ||||
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dist/Math-BigInt/lib/Math/BigFloat.pm b/dist/Math-BigInt/lib/Math/BigFloat.pm index b6421895d0..c860582d6d 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 25f9a3b99d..6909237053 100644 --- a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm +++ b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm @@ -4,7 +4,7 @@ use 5.006002; use strict; # use warnings; # dont use warnings for older Perls -our $VERSION = '1.993'; +our $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 ee0b677c53..1d754ff151 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; |