[Bps-public-commit] r11847 - in Net-IMAP-Server: lib/Net/IMAP

alexmv at bestpractical.com alexmv at bestpractical.com
Wed Apr 23 15:27:46 EDT 2008


Author: alexmv
Date: Wed Apr 23 15:27:43 2008
New Revision: 11847

Modified:
   Net-IMAP-Server/   (props changed)
   Net-IMAP-Server/Changes
   Net-IMAP-Server/META.yml
   Net-IMAP-Server/Makefile.PL
   Net-IMAP-Server/lib/Net/IMAP/Server.pm

Log:
 r30109 at kohr-ah:  chmrr | 2008-04-23 15:24:22 -0400
  * Version bump
  * Make META.yml, Makefile.PL lie less


Modified: Net-IMAP-Server/Changes
==============================================================================
--- Net-IMAP-Server/Changes	(original)
+++ Net-IMAP-Server/Changes	Wed Apr 23 15:27:43 2008
@@ -1,7 +1,17 @@
 Revision history for Net-IMAP-Server
 
+0.4    Fri Apr 11 15:29:15 2008
+        * Weaken the timeout callback, so we don't leak connection
+          objects
+        * Don't double-store refs to connections
+        * Actually clean out old keys in the connection hash
+        * Try to print from the right coro, so EV doesn't complain
+          about recursive entry, and then wedge the next time it
+          happens.
+        * Drop some more 'cede's in for commands which do many things
+
 0.3    Tue Mar 11 12:33:14 2008
-       Connections weren't being fully closed on timeout
+        * Connections weren't being fully closed on timeout
 
 0.2    Mon Mar 10 16:47:52 2008
-       Initial release to CPAN
+        * Initial release to CPAN

Modified: Net-IMAP-Server/META.yml
==============================================================================
--- Net-IMAP-Server/META.yml	(original)
+++ Net-IMAP-Server/META.yml	Wed Apr 23 15:27:43 2008
@@ -1,5 +1,5 @@
-abstract: "[One line description of module's purpose here]"
-author: Jesse Vincent <jesse at bestpractical.com>
+abstract: "A single-threaded multiplexing IMAP server implementation"
+author: Alex Vandiver <alexmv at bestpractical.com>
 distribution_type: module
 generated_by: Module::Install version 0.61
 license: perl
@@ -10,4 +10,4 @@
     - t
 requires: 
   Test::More: 0
-version: 0.001
+version: 0.4

Modified: Net-IMAP-Server/Makefile.PL
==============================================================================
--- Net-IMAP-Server/Makefile.PL	(original)
+++ Net-IMAP-Server/Makefile.PL	Wed Apr 23 15:27:43 2008
@@ -1,7 +1,7 @@
 use inc::Module::Install;
 
 name ('Net-IMAP-Server');
-author ('Jesse Vincent <jesse at bestpractical.com>');
+author ('Alex Vandiver <alexmv at mit.edu>');
 version_from ('lib/Net/IMAP/Server.pm');
 abstract_from('lib/Net/IMAP/Server.pm');
 license('perl');

Modified: Net-IMAP-Server/lib/Net/IMAP/Server.pm
==============================================================================
--- Net-IMAP-Server/lib/Net/IMAP/Server.pm	(original)
+++ Net-IMAP-Server/lib/Net/IMAP/Server.pm	Wed Apr 23 15:27:43 2008
@@ -8,7 +8,7 @@
 use UNIVERSAL::require;
 use Coro;
 
-our $VERSION = '0.3';
+our $VERSION = '0.4';
 
 =head1 NAME
 



More information about the Bps-public-commit mailing list