Correct introspection: info_compat, not info_version
authorIvan Kohler <ivan@freeside.biz>
Wed, 5 Feb 2014 23:44:14 +0000 (15:44 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 5 Feb 2014 23:44:14 +0000 (15:44 -0800)
Changes
lib/Business/OnlinePayment/CardFortress.pm

diff --git a/Changes b/Changes
index 702e263..743a539 100644 (file)
--- 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
 
index 19f3e53..1a8af71 100644 (file)
@@ -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,