about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2017-11-14 17:21:28 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2017-11-14 17:21:28 +0000
commit7b17e37c877e5d78a92f5fb8d67ff4f3aae1cc7c (patch)
treebbba035b6015384056ba3f6ce9c337f1d36b31d3
parent806b32c103868a14522a3e11893479d3ef838b0c (diff)
downloadperl-libnet-7b17e37c877e5d78a92f5fb8d67ff4f3aae1cc7c.tar.gz
Bump version
-rw-r--r--Changes6
-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, 20 insertions, 16 deletions
diff --git a/Changes b/Changes
index d4f0a5b..9e0a3de 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl distribution libnet
 
+3.12 Development
+
+    - TODO
+
 3.11 2017-11-14
 
     - Treat FTP MLSD commands case-insensitively.  [Brian M. Carlson, PR#32]
@@ -33,7 +37,7 @@ Revision history for Perl distribution libnet
     - Debug output now includes decoded (from base64) negotiation for SASL.
       [Philip Prindeville, PR#27]
 
-    - Adapted tests to Test2 revision of Test::More::note()  [James E. Keenan,
+    - Adapted tests to Test2 revision of Test::More::note().  [James E. Keenan,
       PR#28]
 
 3.08 2016-01-05
diff --git a/Makefile.PL b/Makefile.PL
index 73be0a1..efbad99 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.11',
+        VERSION  => '3.12',
 
         META_MERGE => {
             'meta-spec' => {
diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm
index b695f64..9474d21 100644
--- a/lib/Net/Cmd.pm
+++ b/lib/Net/Cmd.pm
@@ -26,7 +26,7 @@ BEGIN {
   }
 }
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 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 4f822a4..44d297f 100644
--- a/lib/Net/Config.pm
+++ b/lib/Net/Config.pm
@@ -18,7 +18,7 @@ use Socket qw(inet_aton inet_ntoa);
 
 our @EXPORT  = qw(%NetConfig);
 our @ISA     = qw(Net::LocalCfg Exporter);
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 our($CONFIGURE, $LIBNET_CFG);
 
diff --git a/lib/Net/Domain.pm b/lib/Net/Domain.pm
index 556cc15..1c7a5ec 100644
--- a/lib/Net/Domain.pm
+++ b/lib/Net/Domain.pm
@@ -19,7 +19,7 @@ use Net::Config;
 
 our @ISA       = qw(Exporter);
 our @EXPORT_OK = qw(hostname hostdomain hostfqdn domainname);
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 my ($host, $domain, $fqdn) = (undef, undef, undef);
 
diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm
index 14153be..604948d 100644
--- a/lib/Net/FTP.pm
+++ b/lib/Net/FTP.pm
@@ -23,7 +23,7 @@ use Net::Config;
 use Socket;
 use Time::Local;
 
-our $VERSION = '3.11';
+our $VERSION = '3.12';
 
 our $IOCLASS;
 my $family_key;
diff --git a/lib/Net/FTP/A.pm b/lib/Net/FTP/A.pm
index 0ea1ba2..f22c974 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.11";
+our $VERSION = "3.12";
 
 our $buf;
 
diff --git a/lib/Net/FTP/E.pm b/lib/Net/FTP/E.pm
index 30b371a..df281c0 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.11";
+our $VERSION = "3.12";
 
 1;
diff --git a/lib/Net/FTP/I.pm b/lib/Net/FTP/I.pm
index ec46ab0..8f85e0e 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.11";
+our $VERSION = "3.12";
 
 our $buf;
 
diff --git a/lib/Net/FTP/L.pm b/lib/Net/FTP/L.pm
index d9a8857..9eda610 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.11";
+our $VERSION = "3.12";
 
 1;
diff --git a/lib/Net/FTP/dataconn.pm b/lib/Net/FTP/dataconn.pm
index 337b0e9..1e89834 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.11';
+our $VERSION = '3.12';
 
 $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 0c22930..3314f24 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -19,7 +19,7 @@ use Net::Cmd;
 use Net::Config;
 use Time::Local;
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 # 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 46fba27..95c28f1 100644
--- a/lib/Net/Netrc.pm
+++ b/lib/Net/Netrc.pm
@@ -16,7 +16,7 @@ use warnings;
 use Carp;
 use FileHandle;
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 our $TESTING;
 
diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm
index 0811025..ccaea8b 100644
--- a/lib/Net/POP3.pm
+++ b/lib/Net/POP3.pm
@@ -18,7 +18,7 @@ use IO::Socket;
 use Net::Cmd;
 use Net::Config;
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 # 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 5eaf422..7a15183 100644
--- a/lib/Net/SMTP.pm
+++ b/lib/Net/SMTP.pm
@@ -19,7 +19,7 @@ use Net::Cmd;
 use Net::Config;
 use Socket;
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 # 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 d049408..cbe4527 100644
--- a/lib/Net/Time.pm
+++ b/lib/Net/Time.pm
@@ -22,7 +22,7 @@ use Net::Config;
 our @ISA       = qw(Exporter);
 our @EXPORT_OK = qw(inet_time inet_daytime);
 
-our $VERSION = "3.11";
+our $VERSION = "3.12";
 
 our $TIMEOUT = 120;