From: Ivan Kohler Date: Wed, 5 Feb 2014 23:44:14 +0000 (-0800) Subject: Correct introspection: info_compat, not info_version X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-CardFortress.git;a=commitdiff_plain;h=cd5ebbdfbf8dc288012969ca73b0b53e24423442 Correct introspection: info_compat, not info_version --- diff --git a/Changes b/Changes index 702e263..743a539 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Business-OnlinePayment-CardFortress +0.03 unreleased + - Declare support for "Tokenize"-only action in introspection + - Correct introspection: info_compat, not info_version + 0.02 Mon Dec 13 22:49:44 PST 2010 - Declare dependency on File::Slurp, closes: rt.cpan.org #63891 diff --git a/lib/Business/OnlinePayment/CardFortress.pm b/lib/Business/OnlinePayment/CardFortress.pm index 19f3e53..1a8af71 100644 --- a/lib/Business/OnlinePayment/CardFortress.pm +++ b/lib/Business/OnlinePayment/CardFortress.pm @@ -9,11 +9,11 @@ use File::Slurp; use MIME::Base64; use Crypt::OpenSSL::RSA; -our $VERSION = 0.02; +our $VERSION = 0.03; sub _info { { - 'info_version' => '0.01', + 'info_compat' => '0.01', 'module_version' => $VERSION, 'supported_types' => [ 'CC' ], 'supported_actions' => { 'CC' => [ @@ -22,6 +22,7 @@ sub _info { 'Post Authorization', 'Void', 'Credit', + 'Tokenize', ], }, 'token_support' => 1,