diff options
author | ivan <ivan> | 2010-10-12 00:27:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-10-12 00:27:54 +0000 |
commit | 1e54aac4155e414d14c90df54d2fe40d91a5300f (patch) | |
tree | 095f738e9b90cc5a97291af5b8f2e11ed6fe2a5a | |
parent | f9c8904a9267ff5225b04f42bf9af4de930cd92c (diff) |
2.04_01
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | lib/Business/OnlinePayment/PaymenTech.pm | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,8 @@ Revision history for Business-OnlinePayment-PaymenTech +2.04 unreleased + - Always send expiration date as MMYY + 2.03 Sun Jan 24 13:19:29 PST 2010 - Truncate all request fields to their maximum lengths - doc: in synopsis example, move merchant_id/terminal_id from content diff --git a/lib/Business/OnlinePayment/PaymenTech.pm b/lib/Business/OnlinePayment/PaymenTech.pm index ce4c1a3..8470e85 100644 --- a/lib/Business/OnlinePayment/PaymenTech.pm +++ b/lib/Business/OnlinePayment/PaymenTech.pm @@ -8,7 +8,10 @@ use Tie::IxHash; use vars qw($VERSION $DEBUG @ISA $me); @ISA = qw(Business::OnlinePayment::HTTPS); -$VERSION = '2.03'; + +$VERSION = '2.04_01'; +$VERSION = eval $VERSION; # modperlstyle: convert the string into a number + $DEBUG = 0; $me='Business::OnlinePayment::PaymenTech'; |