diff options
author | ivan <ivan> | 2007-09-23 22:15:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-09-23 22:15:09 +0000 |
commit | d83b1d67e56ccea8bde6212758378cf96137d89f (patch) | |
tree | 7bcb15ad17f5b7350707787cc1405bcdc5546fa0 | |
parent | 0209ae7362ac5cc905bb63b1fcff4160c70df0cc (diff) |
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 4 | ||||
-rw-r--r-- | StGeorge.pm | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,8 @@ Revision history for Perl extension Business::OnlinePayment::StGeorge. +0.03 unreleased + - Add webpayperl to PREREQ_PM + 0.02 Fri May 7 00:17:46 PDT 2004 - Only call init_client and free_client once, fixes multiple transactions diff --git a/Makefile.PL b/Makefile.PL index 746c961..4168358 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,9 @@ WriteMakefile( 'NAME' => 'Business::OnlinePayment::StGeorge', 'VERSION_FROM' => 'StGeorge.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler <ivan-stgeorge@420.am>', - 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, }, + 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, + 'webpayperl' => 0, + }, #'NORECURS' => 1, # dont descend into subdirectories #'test' => { 'TESTS' => 't*/*.t' }, ); diff --git a/StGeorge.pm b/StGeorge.pm index 1227e8b..cd172ba 100644 --- a/StGeorge.pm +++ b/StGeorge.pm @@ -6,7 +6,7 @@ use Carp qw(croak); use Business::OnlinePayment; @ISA = qw(Business::OnlinePayment); -$VERSION = '0.02'; +$VERSION = '0.03'; use webpayperl; #webpayperl.pm from St.George webpayperl::init_client or croak "St.George initialization failed\n"; |