summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes5
-rw-r--r--MANIFEST1
-rw-r--r--Makefile.PL3
-rw-r--r--lib/Business/OnlinePayment/PaymenTech.pm2
4 files changed, 10 insertions, 1 deletions
diff --git a/Changes b/Changes
index 0e03c19..13e2ba9 100644
--- a/Changes
+++ b/Changes
@@ -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.
diff --git a/MANIFEST b/MANIFEST
index 971978f..8145794 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -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';