From c18c7f967d4d204e30de9e821cbd4910cb90535d Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Thu, 9 Oct 2014 21:10:00 +0100 Subject: Bump version --- Changes | 4 ++++ Makefile.PL | 2 +- lib/Net/Cmd.pm | 2 +- lib/Net/Config.pm | 2 +- lib/Net/Domain.pm | 2 +- lib/Net/FTP.pm | 2 +- lib/Net/FTP/A.pm | 2 +- lib/Net/FTP/E.pm | 2 +- lib/Net/FTP/I.pm | 2 +- lib/Net/FTP/L.pm | 2 +- lib/Net/FTP/dataconn.pm | 2 +- lib/Net/NNTP.pm | 2 +- lib/Net/Netrc.pm | 2 +- lib/Net/POP3.pm | 2 +- lib/Net/SMTP.pm | 2 +- lib/Net/Time.pm | 2 +- 16 files changed, 19 insertions(+), 15 deletions(-) diff --git a/Changes b/Changes index d49bb9c..84f7ea5 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +libnet 3.01 -- TODO + + * TODO + libnet 3.00 -- Thu Oct 09 2014 * Skip Perl Critic, Pod and Pod Coverage tests unless AUTHOR_TESTING. diff --git a/Makefile.PL b/Makefile.PL index 7d6832e..4aaaa91 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -64,7 +64,7 @@ MAIN: { ABSTRACT => 'Collection of network protocol modules', AUTHOR => 'Graham Barr , Steve Hay ', LICENSE => 'perl_5', - VERSION => '3.00', + VERSION => '3.01', META_MERGE => { 'meta-spec' => { diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm index 9d5e0df..c71a789 100644 --- a/lib/Net/Cmd.pm +++ b/lib/Net/Cmd.pm @@ -41,7 +41,7 @@ BEGIN { } } -our $VERSION = "3.00"; +our $VERSION = "3.01"; our @ISA = qw(Exporter); our @EXPORT = qw(CMD_INFO CMD_OK CMD_MORE CMD_REJECT CMD_ERROR CMD_PENDING); diff --git a/lib/Net/Config.pm b/lib/Net/Config.pm index 412ed4a..cdb5956 100644 --- a/lib/Net/Config.pm +++ b/lib/Net/Config.pm @@ -19,7 +19,7 @@ use Socket qw(inet_aton inet_ntoa); our @EXPORT = qw(%NetConfig); our @ISA = qw(Net::LocalCfg Exporter); -our $VERSION = "3.00"; +our $VERSION = "3.01"; our($CONFIGURE, $LIBNET_CFG); diff --git a/lib/Net/Domain.pm b/lib/Net/Domain.pm index de86054..df76e88 100644 --- a/lib/Net/Domain.pm +++ b/lib/Net/Domain.pm @@ -20,7 +20,7 @@ use Net::Config; our @ISA = qw(Exporter); our @EXPORT_OK = qw(hostname hostdomain hostfqdn domainname); -our $VERSION = "3.00"; +our $VERSION = "3.01"; my ($host, $domain, $fqdn) = (undef, undef, undef); diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm index d6e5e1b..0dec196 100644 --- a/lib/Net/FTP.pm +++ b/lib/Net/FTP.pm @@ -24,7 +24,7 @@ use Net::Config; use Socket 1.3; use Time::Local; -our $VERSION = '3.00'; +our $VERSION = '3.01'; our $IOCLASS; BEGIN { diff --git a/lib/Net/FTP/A.pm b/lib/Net/FTP/A.pm index 314a4d9..02574ee 100644 --- a/lib/Net/FTP/A.pm +++ b/lib/Net/FTP/A.pm @@ -13,7 +13,7 @@ use Carp; use Net::FTP::dataconn; our @ISA = qw(Net::FTP::dataconn); -our $VERSION = "3.00"; +our $VERSION = "3.01"; our $buf; diff --git a/lib/Net/FTP/E.pm b/lib/Net/FTP/E.pm index 50b0757..accfa08 100644 --- a/lib/Net/FTP/E.pm +++ b/lib/Net/FTP/E.pm @@ -8,6 +8,6 @@ use warnings; use Net::FTP::I; our @ISA = qw(Net::FTP::I); -our $VERSION = "3.00"; +our $VERSION = "3.01"; 1; diff --git a/lib/Net/FTP/I.pm b/lib/Net/FTP/I.pm index 1302a95..14be581 100644 --- a/lib/Net/FTP/I.pm +++ b/lib/Net/FTP/I.pm @@ -13,7 +13,7 @@ use Carp; use Net::FTP::dataconn; our @ISA = qw(Net::FTP::dataconn); -our $VERSION = "3.00"; +our $VERSION = "3.01"; our $buf; diff --git a/lib/Net/FTP/L.pm b/lib/Net/FTP/L.pm index bdc04f1..6c1b70e 100644 --- a/lib/Net/FTP/L.pm +++ b/lib/Net/FTP/L.pm @@ -8,6 +8,6 @@ use warnings; use Net::FTP::I; our @ISA = qw(Net::FTP::I); -our $VERSION = "3.00"; +our $VERSION = "3.01"; 1; diff --git a/lib/Net/FTP/dataconn.pm b/lib/Net/FTP/dataconn.pm index 6639933..bcb7df6 100644 --- a/lib/Net/FTP/dataconn.pm +++ b/lib/Net/FTP/dataconn.pm @@ -13,7 +13,7 @@ use Carp; use Errno; use Net::Cmd; -our $VERSION = '3.00'; +our $VERSION = '3.01'; $Net::FTP::IOCLASS or die "please load Net::FTP before Net::FTP::dataconn"; our @ISA = $Net::FTP::IOCLASS; diff --git a/lib/Net/NNTP.pm b/lib/Net/NNTP.pm index 5c56ac9..db951dc 100644 --- a/lib/Net/NNTP.pm +++ b/lib/Net/NNTP.pm @@ -20,7 +20,7 @@ use Net::Cmd; use Net::Config; use Time::Local; -our $VERSION = "3.00"; +our $VERSION = "3.01"; # Code for detecting if we can use SSL my $ssl_class = eval { diff --git a/lib/Net/Netrc.pm b/lib/Net/Netrc.pm index 21f4ea3..11fef3b 100644 --- a/lib/Net/Netrc.pm +++ b/lib/Net/Netrc.pm @@ -17,7 +17,7 @@ use warnings; use Carp; use FileHandle; -our $VERSION = "3.00"; +our $VERSION = "3.01"; our $TESTING; diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm index de02b8c..d65461b 100644 --- a/lib/Net/POP3.pm +++ b/lib/Net/POP3.pm @@ -19,7 +19,7 @@ use IO::Socket; use Net::Cmd; use Net::Config; -our $VERSION = "3.00"; +our $VERSION = "3.01"; # Code for detecting if we can use SSL my $ssl_class = eval { diff --git a/lib/Net/SMTP.pm b/lib/Net/SMTP.pm index 18e5bc1..df072ef 100644 --- a/lib/Net/SMTP.pm +++ b/lib/Net/SMTP.pm @@ -20,7 +20,7 @@ use Net::Cmd; use Net::Config; use Socket 1.3; -our $VERSION = "3.00"; +our $VERSION = "3.01"; # Code for detecting if we can use SSL my $ssl_class = eval { diff --git a/lib/Net/Time.pm b/lib/Net/Time.pm index f815ab6..54ca52a 100644 --- a/lib/Net/Time.pm +++ b/lib/Net/Time.pm @@ -23,7 +23,7 @@ use Net::Config; our @ISA = qw(Exporter); our @EXPORT_OK = qw(inet_time inet_daytime); -our $VERSION = "3.00"; +our $VERSION = "3.01"; our $TIMEOUT = 120; -- cgit v1.2.3-24-ge0c7