From e8340ba23c44f80ce6c13571dfbcca119d56701a Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Tue, 5 Jan 2016 13:48:19 +0000 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 b52d28f..3992e00 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl distribution libnet +3.09 Development + + - TODO + 3.08 2016-01-05 - Fix a bug introduced in version 1.28 whereby a short write in Net::Cmd diff --git a/Makefile.PL b/Makefile.PL index 64d6959..ade8c3b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -66,7 +66,7 @@ MAIN: { ABSTRACT => 'Collection of network protocol modules', AUTHOR => 'Graham Barr , Steve Hay ', LICENSE => 'perl_5', - VERSION => '3.08', + VERSION => '3.09', META_MERGE => { 'meta-spec' => { diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm index 2242600..1c312ca 100644 --- a/lib/Net/Cmd.pm +++ b/lib/Net/Cmd.pm @@ -28,7 +28,7 @@ BEGIN { } } -our $VERSION = "3.08"; +our $VERSION = "3.09"; 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 3aa547e..ff2b841 100644 --- a/lib/Net/Config.pm +++ b/lib/Net/Config.pm @@ -20,7 +20,7 @@ use Socket qw(inet_aton inet_ntoa); our @EXPORT = qw(%NetConfig); our @ISA = qw(Net::LocalCfg Exporter); -our $VERSION = "3.08"; +our $VERSION = "3.09"; our($CONFIGURE, $LIBNET_CFG); diff --git a/lib/Net/Domain.pm b/lib/Net/Domain.pm index e2be3b1..6b650b8 100644 --- a/lib/Net/Domain.pm +++ b/lib/Net/Domain.pm @@ -21,7 +21,7 @@ use Net::Config; our @ISA = qw(Exporter); our @EXPORT_OK = qw(hostname hostdomain hostfqdn domainname); -our $VERSION = "3.08"; +our $VERSION = "3.09"; my ($host, $domain, $fqdn) = (undef, undef, undef); diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm index c0904c6..24b11eb 100644 --- a/lib/Net/FTP.pm +++ b/lib/Net/FTP.pm @@ -25,7 +25,7 @@ use Net::Config; use Socket; use Time::Local; -our $VERSION = '3.08'; +our $VERSION = '3.09'; our $IOCLASS; my $family_key; diff --git a/lib/Net/FTP/A.pm b/lib/Net/FTP/A.pm index a1ae30b..5dc16fa 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.08"; +our $VERSION = "3.09"; our $buf; diff --git a/lib/Net/FTP/E.pm b/lib/Net/FTP/E.pm index cf09d90..5f77665 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.08"; +our $VERSION = "3.09"; 1; diff --git a/lib/Net/FTP/I.pm b/lib/Net/FTP/I.pm index b014f08..25d14c0 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.08"; +our $VERSION = "3.09"; our $buf; diff --git a/lib/Net/FTP/L.pm b/lib/Net/FTP/L.pm index d13efe7..1809194 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.08"; +our $VERSION = "3.09"; 1; diff --git a/lib/Net/FTP/dataconn.pm b/lib/Net/FTP/dataconn.pm index 8d82030..24b2ac7 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.08'; +our $VERSION = '3.09'; $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 0d690de..1cd0988 100644 --- a/lib/Net/NNTP.pm +++ b/lib/Net/NNTP.pm @@ -21,7 +21,7 @@ use Net::Cmd; use Net::Config; use Time::Local; -our $VERSION = "3.08"; +our $VERSION = "3.09"; # 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 4945604..5988606 100644 --- a/lib/Net/Netrc.pm +++ b/lib/Net/Netrc.pm @@ -18,7 +18,7 @@ use warnings; use Carp; use FileHandle; -our $VERSION = "3.08"; +our $VERSION = "3.09"; our $TESTING; diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm index bccdfb0..5bce1fd 100644 --- a/lib/Net/POP3.pm +++ b/lib/Net/POP3.pm @@ -20,7 +20,7 @@ use IO::Socket; use Net::Cmd; use Net::Config; -our $VERSION = "3.08"; +our $VERSION = "3.09"; # 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 6d3e4c2..83bb387 100644 --- a/lib/Net/SMTP.pm +++ b/lib/Net/SMTP.pm @@ -21,7 +21,7 @@ use Net::Cmd; use Net::Config; use Socket; -our $VERSION = "3.08"; +our $VERSION = "3.09"; # 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 fae93f8..a8f0b43 100644 --- a/lib/Net/Time.pm +++ b/lib/Net/Time.pm @@ -24,7 +24,7 @@ use Net::Config; our @ISA = qw(Exporter); our @EXPORT_OK = qw(inet_time inet_daytime); -our $VERSION = "3.08"; +our $VERSION = "3.09"; our $TIMEOUT = 120; -- cgit v1.2.3-24-ge0c7