diff options
author | ivan <ivan> | 2010-01-14 02:48:39 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-01-14 02:48:39 +0000 |
commit | b37129289a0f46bd341e39e44d9000c1c79e92cb (patch) | |
tree | d038f24229af0e475416eb5f3cd8ba5f128f234a | |
parent | a1cfbdc4c895a920165f674900f8b416e336deec (diff) |
- Add B:OP, B:OP:HTTPS and XML::Simple to Makefile.PL PREREQ_PM
(closes: CPAN#53646)
- Add t/boilerplate.t to MANIFEST
-rw-r--r-- | Changes | 5 | ||||
-rw-r--r-- | MANIFEST | 1 | ||||
-rw-r--r-- | Makefile.PL | 3 | ||||
-rw-r--r-- | lib/Business/OnlinePayment/PaymenTech.pm | 2 |
4 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,10 @@ Revision history for Business-OnlinePayment-PaymenTech +2.02 Wed Jan 13 18:40:06 PST 2010 + - Add B:OP, B:OP:HTTPS and XML::Simple to Makefile.PL PREREQ_PM + (closes: CPAN#53646) + - Add t/boilerplate.t to MANIFEST + 2.01 Sun Nov 29 12:59:44 PST 2009 Added support for MarkForCapture and Reversal transactions. @@ -4,4 +4,5 @@ Makefile.PL README lib/Business/OnlinePayment/PaymenTech.pm t/00-load.t +t/boilerplate.t t/pod.t diff --git a/Makefile.PL b/Makefile.PL index d0b1788..6b7a969 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,6 +13,9 @@ WriteMakefile( PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, + 'Business::OnlinePayment' => 3, + 'Business::OnlinePayment::HTTPS' => 0, + 'XML::Simple' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Business-OnlinePayment-PaymenTech-*' }, diff --git a/lib/Business/OnlinePayment/PaymenTech.pm b/lib/Business/OnlinePayment/PaymenTech.pm index 0f23ee7..82b50d3 100644 --- a/lib/Business/OnlinePayment/PaymenTech.pm +++ b/lib/Business/OnlinePayment/PaymenTech.pm @@ -8,7 +8,7 @@ use Tie::IxHash; use vars qw($VERSION $DEBUG @ISA $me); @ISA = qw(Business::OnlinePayment::HTTPS); -$VERSION = '2.01'; +$VERSION = '2.02'; $DEBUG = 0; $me='Business::OnlinePayment::PaymenTech'; |