diff options
author | C.J. Adams-Collier <cjac@colliertech.org> | 2014-09-23 12:39:39 -0700 |
---|---|---|
committer | C.J. Adams-Collier <cjac@colliertech.org> | 2014-09-23 12:39:39 -0700 |
commit | 87bf60692c26733b75173ce7eba69dd5d2cb0e12 (patch) | |
tree | 3e7c76d6de1ae2621eb9ee4e4201af8ab5d00ebe | |
parent | 18cd553dba851f6b2bdc4a3bf4316ff563c900cc (diff) |
bumped version up to 0.02, added Changelog entries, added a dist target to Makefile.PL
-rw-r--r-- | Changes | 5 | ||||
-rw-r--r-- | Makefile.PL | 4 | ||||
-rw-r--r-- | lib/Business/OnlinePayment/Exact.pm | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,10 @@ 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 diff --git a/Makefile.PL b/Makefile.PL index 0a8ae3d..d67ad4c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 - AUTHOR => 'mock <mock@obscurity.org>') : ()), + AUTHOR => 'C.J. Adams-Collier <cjac@colliertech.org>') : ()), + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, ); + diff --git a/lib/Business/OnlinePayment/Exact.pm b/lib/Business/OnlinePayment/Exact.pm index c765ecd..490bd2e 100644 --- a/lib/Business/OnlinePayment/Exact.pm +++ b/lib/Business/OnlinePayment/Exact.pm @@ -10,7 +10,7 @@ our @ISA = qw(Business::OnlinePayment); our @EXPORT_OK = (); our @EXPORT = qw(); -our $VERSION = '0.01'; +our $VERSION = '0.02'; sub set_defaults { my $self = shift; |