about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2016-07-19 08:46:06 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2016-07-19 08:46:06 +0100
commit41e46adcef382389085fdb979c5288b4ed2cf77c (patch)
tree837eee0b1ff1b25f098b68e35bfd3d30847f2df5
parentf495003a0c3f2f49e429afc6b470f9f242e0a6f0 (diff)
downloadperl-libnet-41e46adcef382389085fdb979c5288b4ed2cf77c.tar.gz
Bump version
-rw-r--r--Changes4
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Net/Cmd.pm2
-rw-r--r--lib/Net/Config.pm2
-rw-r--r--lib/Net/Domain.pm2
-rw-r--r--lib/Net/FTP.pm2
-rw-r--r--lib/Net/FTP/A.pm2
-rw-r--r--lib/Net/FTP/E.pm2
-rw-r--r--lib/Net/FTP/I.pm2
-rw-r--r--lib/Net/FTP/L.pm2
-rw-r--r--lib/Net/FTP/dataconn.pm2
-rw-r--r--lib/Net/NNTP.pm2
-rw-r--r--lib/Net/Netrc.pm2
-rw-r--r--lib/Net/POP3.pm2
-rw-r--r--lib/Net/SMTP.pm2
-rw-r--r--lib/Net/Time.pm2
16 files changed, 19 insertions, 15 deletions
diff --git a/Changes b/Changes
index 831e061..1d574b7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl distribution libnet
 
+3.10 Development
+
+    - TODO
+
 3.09 2016-07-19
 
     - Provided (and documented) a default Net::Cmd::timeout().  [CPAN RT#110978]
diff --git a/Makefile.PL b/Makefile.PL
index 6efc003..3eb2985 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -66,7 +66,7 @@ MAIN: {
         ABSTRACT => 'Collection of network protocol modules',
         AUTHOR   => 'Graham Barr <gbarr@pobox.com>, Steve Hay <shay@cpan.org>',
         LICENSE  => 'perl_5',
-        VERSION  => '3.09',
+        VERSION  => '3.10',
 
         META_MERGE => {
             'meta-spec' => {
diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm
index 3f102b9..e739c89 100644
--- a/lib/Net/Cmd.pm
+++ b/lib/Net/Cmd.pm
@@ -28,7 +28,7 @@ BEGIN {
   }
 }
 
-our $VERSION = "3.09";
+our $VERSION = "3.10";
 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 ff2b841..0fb8713 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.09";
+our $VERSION = "3.10";
 
 our($CONFIGURE, $LIBNET_CFG);
 
diff --git a/lib/Net/Domain.pm b/lib/Net/Domain.pm
index 6b650b8..796bbaf 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.09";
+our $VERSION = "3.10";
 
 my ($host, $domain, $fqdn) = (undef, undef, undef);
 
diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm
index 2bf6fc9..905d830 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.09';
+our $VERSION = '3.10';
 
 our $IOCLASS;
 my $family_key;
diff --git a/lib/Net/FTP/A.pm b/lib/Net/FTP/A.pm
index 5dc16fa..c889687 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.09";
+our $VERSION = "3.10";
 
 our $buf;
 
diff --git a/lib/Net/FTP/E.pm b/lib/Net/FTP/E.pm
index 5f77665..8ebec64 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.09";
+our $VERSION = "3.10";
 
 1;
diff --git a/lib/Net/FTP/I.pm b/lib/Net/FTP/I.pm
index 25d14c0..b55002f 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.09";
+our $VERSION = "3.10";
 
 our $buf;
 
diff --git a/lib/Net/FTP/L.pm b/lib/Net/FTP/L.pm
index 1809194..e4ab31e 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.09";
+our $VERSION = "3.10";
 
 1;
diff --git a/lib/Net/FTP/dataconn.pm b/lib/Net/FTP/dataconn.pm
index 24b2ac7..6f5d8b3 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.09';
+our $VERSION = '3.10';
 
 $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 803692b..764d580 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.09";
+our $VERSION = "3.10";
 
 # 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 5988606..c075e14 100644
--- a/lib/Net/Netrc.pm
+++ b/lib/Net/Netrc.pm
@@ -18,7 +18,7 @@ use warnings;
 use Carp;
 use FileHandle;
 
-our $VERSION = "3.09";
+our $VERSION = "3.10";
 
 our $TESTING;
 
diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm
index eaff511..bb18aaf 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.09";
+our $VERSION = "3.10";
 
 # 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 726035d..0dd966f 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.09";
+our $VERSION = "3.10";
 
 # 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 a8f0b43..9a7f3b2 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.09";
+our $VERSION = "3.10";
 
 our $TIMEOUT = 120;