From: ivan Date: Wed, 18 Jun 2008 21:05:12 +0000 (+0000) Subject: We need B:OP v3, thankyouverymuch. X-Git-Tag: Business_OnlinePayment_Skipjack_0_05 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-Skipjack.git;a=commitdiff_plain We need B:OP v3, thankyouverymuch. --- diff --git a/Changes b/Changes index 768469c..a4f5093 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Business::OnlinePayment::SkipJack +0.5 Wed Jun 18 14:04:06 PDT 2008 + - The "I love cpan-testers" release. + - We need B:OP v3, thankyouverymuch. + - Hopefully the dependency BS is over with. + 0.4 Tue Jun 3 16:55:58 PDT 2008 - The "I'm on crack" release. - We *do* use B:OP:HTTPS. Depend on it. diff --git a/Makefile.PL b/Makefile.PL index 61da078..27cfd9a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,9 @@ WriteMakefile( 'NAME' => 'Business::OnlinePayment::Skipjack', 'VERSION_FROM' => 'Skipjack.pm', 'AUTHOR' => 'See README', - 'PREREQ_PM' => {'Net::SSLeay' => 0, 'Text::CSV_XS' => 0, - 'Business::OnlinePayment' => 0}, + 'PREREQ_PM' => { + 'Text::CSV_XS' => 0, + 'Business::OnlinePayment' => 3 + }, 'dist' => {CI => 'ci -l'}, ); diff --git a/Skipjack.pm b/Skipjack.pm index 32e68be..2fc7649 100644 --- a/Skipjack.pm +++ b/Skipjack.pm @@ -27,7 +27,7 @@ use Business::OnlinePayment::HTTPS; use Text::CSV_XS; use vars qw( @ISA $VERSION $DEBUG ); -$VERSION = "0.4"; +$VERSION = "0.5"; $DEBUG = 0; @ISA = qw( Business::OnlinePayment::HTTPS );