bumped version up to 0.02, added Changelog entries, added a dist target to Makefile.PL
authorC.J. Adams-Collier <cjac@colliertech.org>
Tue, 23 Sep 2014 19:39:39 +0000 (12:39 -0700)
committerC.J. Adams-Collier <cjac@colliertech.org>
Tue, 23 Sep 2014 19:39:39 +0000 (12:39 -0700)
Changes
Makefile.PL
lib/Business/OnlinePayment/Exact.pm

diff --git a/Changes b/Changes
index bdb4768..d99f68c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Business::OnlinePayment::Exact.
 
 Revision history for Perl extension Business::OnlinePayment::Exact.
 
+0.02  Tue Sep 23 12:27:14 2014
+      - test_transaction(1) now die()s
+      - there now exists a dist make target
+
+
 0.01  Wed Jan  7 13:31:33 2004
        - original version; created by h2xs 1.23 with options
                -AX --use-new-tests -b 5.6.1 -n Business::OnlinePayment::Exact
 0.01  Wed Jan  7 13:31:33 2004
        - original version; created by h2xs 1.23 with options
                -AX --use-new-tests -b 5.6.1 -n Business::OnlinePayment::Exact
index 0a8ae3d..d67ad4c 100644 (file)
@@ -12,5 +12,7 @@ WriteMakefile(
                           'SOAP::Lite' => '0.65_3'}, # e.g., Module::Name => 1.1
     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/Exact.pm', # retrieve abstract from module
                           'SOAP::Lite' => '0.65_3'}, # e.g., Module::Name => 1.1
     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/Exact.pm', # retrieve abstract from module
-       AUTHOR         => 'mock <mock@obscurity.org>') : ()),
+       AUTHOR         => 'C.J. Adams-Collier <cjac@colliertech.org>') : ()),
+    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 );
 );
+
index c765ecd..490bd2e 100644 (file)
@@ -10,7 +10,7 @@ our @ISA = qw(Business::OnlinePayment);
 our @EXPORT_OK = ();
 our @EXPORT = qw();
 
 our @EXPORT_OK = ();
 our @EXPORT = qw();
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub set_defaults {
     my $self = shift;
 
 sub set_defaults {
     my $self = shift;