From: Ivan Kohler Date: Mon, 24 Jul 2017 01:40:04 +0000 (-0700) Subject: Merge branch 'master' of git.freeside.biz:/home/git/Business-OnlinePayment-FirstDataG... X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-FirstDataGlobalGateway.git;a=commitdiff_plain;h=0e04297ed42836f89ad7fa66145c95717a9551fe;hp=29eb98c8094f623b3b9ba6e1b0333a0fe4e98015 Merge branch 'master' of git.freeside.biz:/home/git/Business-OnlinePayment-FirstDataGlobalGateway --- diff --git a/Changes b/Changes index 9ec9d88..62b68ef 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl module Business::OnlinePayment::FirstDataGlobalGateway +0.02 unreleased + - Declare dep on Business::CreditCard, closes: rt.cpan.org #110172 + 0.01 Jul 10 2014 Initial release. diff --git a/Makefile.PL b/Makefile.PL index 838e74d..5189b7b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,7 @@ WriteMakefile( 'Business::OnlinePayment' => 3.01, 'SOAP::Lite' => 0, 'Data::Dumper' => 0, + 'Business::CreditCard' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Business-OnlinePayment-FirstDataGlobalGateway-*' }, diff --git a/lib/Business/OnlinePayment/FirstDataGlobalGateway.pm b/lib/Business/OnlinePayment/FirstDataGlobalGateway.pm index 03517cb..ca693e9 100644 --- a/lib/Business/OnlinePayment/FirstDataGlobalGateway.pm +++ b/lib/Business/OnlinePayment/FirstDataGlobalGateway.pm @@ -8,7 +8,7 @@ use Business::CreditCard; use SOAP::Lite; #+trace => 'all'; #SOAP::Lite->import(+trace=>'debug'); -our $VERSION = '0.01'; +our $VERSION = '0.02'; $VERSION = eval $VERSION; # modperlstyle: convert the string into a number our @alpha = ( 'a'..'z', 'A'..'Z', '0'..'9' );