From: Tomas Doran Date: Wed, 5 Aug 2009 19:39:01 +0000 (+0000) Subject: Require perl 5.8.6 X-Git-Tag: 5.80008~40 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=24964c89d370aefd1d994afe5e3444f1ad082d95 Require perl 5.8.6 --- diff --git a/Changes b/Changes index b0d8a94..f984fc2 100644 --- a/Changes +++ b/Changes @@ -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) diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 271d7a5..de3552e 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -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!