[Catalyst-commits] r11034 - in Catalyst-Runtime/5.80/trunk: . lib/Catalyst

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Wed Aug 5 19:39:02 GMT 2009


Author: t0m
Date: 2009-08-05 19:39:01 +0000 (Wed, 05 Aug 2009)
New Revision: 11034

Modified:
   Catalyst-Runtime/5.80/trunk/Changes
   Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
Log:
Require perl 5.8.6

Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes	2009-08-05 17:12:49 UTC (rev 11033)
+++ Catalyst-Runtime/5.80/trunk/Changes	2009-08-05 19:39:01 UTC (rev 11034)
@@ -14,6 +14,10 @@
        - Deleted the Restarter engine and its Watcher code. Use the
          new Catalyst::Restarter in a recent Catalyst::Devel instead.
        - New unit test for Catalyst::Action 'unit_core_action.t' (groditi)
+       - Bump minimum supported perl version from 5.8.1 to 5.8.6 as there are
+         known issues with 5.8.3, and nobody is prepared to fix / support perl
+         older than 5.8.6 any more. Patches to regain compatibility to older
+         perls would be welcome.
 
   New features:
        - private_path method for Catalyst::Action + docs + tests (groditi)

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2009-08-05 17:12:49 UTC (rev 11033)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2009-08-05 19:39:01 UTC (rev 11034)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-BEGIN { require 5.008001; }
+BEGIN { require 5.008006; }
 
 # Remember to update this in Catalyst as well!
 




More information about the Catalyst-commits mailing list