diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-12-07 10:12:48 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-12-07 10:12:48 -0800 |
commit | f8a096330efae217af9713887a8ebe9489de5d5e (patch) | |
tree | e29b2c989cd5a5df2408319847173ee3cbb24dfb | |
parent | 57803c3e46fd1d889cb1f59b24b713b7281d7305 (diff) |
-rw-r--r-- | Changes | 5 | ||||
-rw-r--r-- | Makefile.PL | 3 | ||||
-rw-r--r-- | lib/Net/Ikano.pm | 4 |
3 files changed, 8 insertions, 4 deletions
@@ -1,5 +1,8 @@ Revision history for Net-Ikano -0.01 unreleased +0.02 unreleased + - Add Switch dependency (closes: rt.cpan.org #110112) + +0.01 Thu Aug 11 13:44:27 PDT 2011 First version diff --git a/Makefile.PL b/Makefile.PL index 358637f..e326e18 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,12 +4,13 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Net::Ikano', - AUTHOR => 'Erik Levinson <levinse@freeside.biz>', + AUTHOR => 'Ivan Kohler <ivan-ikano@freeside.biz>', VERSION_FROM => 'lib/Net/Ikano.pm', ABSTRACT_FROM => 'lib/Net/Ikano.pm', PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, + 'Switch' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Net-Ikano-*' }, diff --git a/lib/Net/Ikano.pm b/lib/Net/Ikano.pm index 37b94a4..287b145 100644 --- a/lib/Net/Ikano.pm +++ b/lib/Net/Ikano.pm @@ -12,11 +12,11 @@ Net::Ikano - Interface to Ikano wholesale DSL API =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; our $URL = 'https://orders.value.net/OsirisWebService/XmlApi.aspx'; |