about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>2007-02-03 01:31:36 +0000
committerGraham Barr <gbarr@pobox.com>2009-02-24 10:40:47 -0600
commit0be1e12e7bfcfccf67bcb4c7d657bf3313f84c73 (patch)
tree367a7e4be576aef41104b3be8a0aa5f436a12053
parenta0cf376daae1ea8e56fc5d2572e346e0074d465b (diff)
downloadperl-libnet-0be1e12e7bfcfccf67bcb4c7d657bf3313f84c73.tar.gz
Release 1.20 v1.20
-rw-r--r--Changes13
-rw-r--r--MANIFEST1
-rw-r--r--Makefile.PL18
3 files changed, 21 insertions, 11 deletions
diff --git a/Changes b/Changes
index 724135c..2d74af5 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,16 @@
+libnet 1.20  -- Fri Feb  2 19:42:51 CST 2007
+
+Bug Fixes
+  * Fixed incorrect handling of CRLF that straddled two blocks
+  * Fix bug in response() which was too liberal in what it thought was a response line
+  * Silence uninitialized value warnings in Net::Cmd during testing on Win32
+  * Documentations typos and updates
+
+Enhancements
+  * Added support for ORCPT into Net::SMTP
+  * Support for servers that expect the USER command in upper or lower case. Try USER
+    first then try user if that fails
+
 libnet 1.19  -- Wed Jun 30 14:53:48 BST 2004
 
 Bug Fixes
diff --git a/MANIFEST b/MANIFEST
index 8d8183a..9a23302 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3,7 +3,6 @@ Config.eg
 Configure
 Hostname.pm.eg                        Example replacement for Hostname.pm
 MANIFEST
-META.yml                        Module meta-data
 Makefile.PL
 Net/Cmd.pm
 Net/Config.pm
diff --git a/Makefile.PL b/Makefile.PL
index 0eb7c72..1aed29d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,7 +4,7 @@
 
 $NAME     = 'Net';
 $DISTNAME = "libnet";
-$VERSION  = "1.19";
+$VERSION  = "1.20";
 
 BEGIN { require 5.002 }
 
@@ -101,15 +101,13 @@ WriteMakefile(
 );
 
 sub MY::postamble {
-                                                                                                    
-<<EOS;
-                                                                                                    
-distdir : run_cpansign
-                                                                                                    
+  return <<'POSTAMBLE';
+
+mydist : manifest run_cpansign dist
+
 run_cpansign :
         cpansign -s
-                                                                                                    
-EOS
-                                                                                                    
-}
 
+POSTAMBLE
+
+}