From: Steve Peters Date: Wed, 9 Jan 2008 21:50:25 +0000 (+0000) Subject: Upgrade to Math-Complex-1.43 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=036846d3cb5fd43e75de71347d8307e819ae6788;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Math-Complex-1.43 p4raw-id: //depot/perl@32929 --- diff --git a/lib/Math/Complex.pm b/lib/Math/Complex.pm index 315bea4..3840219 100644 --- a/lib/Math/Complex.pm +++ b/lib/Math/Complex.pm @@ -9,9 +9,10 @@ package Math::Complex; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $Inf); -$VERSION = 1.42; +$VERSION = 1.43; BEGIN { + # For 64-bit doubles, anyway. my $IEEE_DBL_MAX = eval "1.7976931348623157e+308"; if ($^O eq 'unicosmk') { $Inf = $IEEE_DBL_MAX; diff --git a/lib/Math/Complex.t b/lib/Math/Complex.t index 25c068d..87a6bf7 100755 --- a/lib/Math/Complex.t +++ b/lib/Math/Complex.t @@ -13,7 +13,7 @@ BEGIN { } } -use Math::Complex 1.42; +use Math::Complex 1.43; use vars qw($VERSION); diff --git a/lib/Math/Trig.pm b/lib/Math/Trig.pm index 5bd85c5..f3a84e6 100644 --- a/lib/Math/Trig.pm +++ b/lib/Math/Trig.pm @@ -10,14 +10,14 @@ package Math::Trig; use 5.005; use strict; -use Math::Complex 1.42; +use Math::Complex 1.43; use Math::Complex qw(:trig :pi); use vars qw($VERSION $PACKAGE @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); @ISA = qw(Exporter); -$VERSION = 1.07; +$VERSION = 1.08; my @angcnv = qw(rad2deg rad2grad deg2rad deg2grad diff --git a/lib/Math/Trig.t b/lib/Math/Trig.t index ea19a6c..b05e636 100755 --- a/lib/Math/Trig.t +++ b/lib/Math/Trig.t @@ -28,8 +28,8 @@ BEGIN { plan(tests => 135); -use Math::Trig 1.07; -use Math::Trig 1.07 qw(Inf); +use Math::Trig 1.08; +use Math::Trig 1.08 qw(Inf); my $pip2 = pi / 2;