Require perl 5.8.6
Tomas Doran [Wed, 5 Aug 2009 19:39:01 +0000 (19:39 +0000)]
Changes
lib/Catalyst/Runtime.pm

diff --git a/Changes b/Changes
index b0d8a94..f984fc2 100644 (file)
--- a/Changes
+++ b/Changes
        - 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)
index 271d7a5..de3552e 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Runtime;
 use strict;
 use warnings;
 
-BEGIN { require 5.008001; }
+BEGIN { require 5.008006; }
 
 # Remember to update this in Catalyst as well!